-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
84 lines (76 loc) · 1.88 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[aliases]
test=pytest
dists = sdist bdist_wheel
[bdist_wheel]
universal=0
[coverage:run]
source = deepCR
omit = deepCR/test/*
parallel = True
concurrency =
thread
[metadata]
name = deepCR
license = BSD 3-Clause
license_files =
LICENSE.txt
author = Keming Zhang
author_email = [email protected]
url = http://pypi.python.org/pypi/deepCR/
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: POSIX
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Internet
Topic :: Scientific/Engineering :: Astronomy
[options]
packages = find:
python_requires = >=3.5
install_requires =
numpy>=1.16.3
astropy>=3.1.2
astroscrappy>=1.0.8
tqdm
scikit-image>=0.15.0;python_version>='3.7'
scikit-image==0.15.*;python_version<'3.7'
scipy>=1.2.1;python_version>='3.7'
scipy==1.2.*;python_version<'3.7'
torch>=1.1.0
setuptools>=38.3
cloudpickle>=0.8
joblib>=0.13.2
tensorboard>=1.14
tests_require =
pytest>=4.6
[test]
# py.test options when running `python setup.py test`
addopts = --verbose
extras = True
[tool:pytest]
# Options for py.test:
# Specify command line options as you would do when invoking py.test directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
addopts =
--cov=deepCR --cov-config .coveragerc --cov-report term-missing
--verbose --cov-report xml:coverage.xml
# In order to use xdist, the developer can add, for example, the following
# arguments:
# --dist=load --numprocesses=auto
norecursedirs =
dist
build
.tox
testpaths =
deepCR/test
[flake8]
exclude =
.tox
build
dist
.eggs