-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (57 loc) · 1.69 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[metadata]
name = mwax_mover
version = 0.19.5
author = Greg Sleap, Dev Null
author_email = greg.sleap@curtin.edu.au, dev.null@curtin.edu.au
description = A module to manage input and archiving for the MWAX correlator
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/MWATelescope/mwax_mover
keywords =
MWA
radioastronomy
project_urls =
Bug Tracker = https://github.com/MWATelescope/mwax_mover/issues
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Astronomy
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python :: 3.11
[options]
package_dir =
= src
packages = find:
python_requires = >=3.11
install_requires =
inotify
psycopg[binary]
psycopg[pool]
requests
tenacity
boto3
astropy
scipy
importlib_metadata
pandas
seaborn
coloredlogs
matplotlib
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
mwax_calvin_processor = mwax_mover.mwax_calvin_processor:main
mwax_calvin_download_processor = mwax_mover.mwax_calvin_download_processor:main
mwax_subfile_distributor = mwax_mover.mwax_subfile_distributor:main
mwacache_archiver = mwax_mover.mwacache_archive_processor:main
mwacache_checks = mwax_mover.mwacache_checks:main
#
# Commented out for prod- this is a temporary test util
#
# mwax_test = mwax_mover.test:main
[options.extras_require]
# Use: pip install -e .[test]
# to install the package in developer/editable mode along with the test dependencies.
test =
pytest