-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
60 lines (56 loc) · 1.56 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
[metadata]
name = radionets
version = 0.3.1
author = Kevin Schmidt, Felix Geyer
author_email = [email protected], [email protected]
license = MIT
description = Imaging radio interferometric data with neural networks
url = https://github.com/radionets-project/radionets
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Information Analysis
[aliases]
test = pytest
[options]
packages = find:
zip_safe = False
setup_requires = pytest-runner
install_requires =
fastai
kornia
pytorch-msssim
numpy
astropy
tqdm
click
numba
jupyter
h5py
scikit-image
pandas
toml
pytest
pytest-cov
pytest-order
comet_ml
pre-commit
tests_require = pytest
[tool:pytest]
addopts = --verbose
[options.entry_points]
console_scripts =
radionets_simulations = radionets.simulations.scripts.simulate_images:main
radionets_training = radionets.dl_training.scripts.start_training:main
radionets_evaluation = radionets.evaluation.scripts.start_evaluation:main