-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (53 loc) · 1.47 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
[metadata]
name = muse-origin
description = Blind detection of faint emission line galaxies in MUSE datacubes
long_description = file: README.rst
url = https://github.com/musevlt/origin
author = Simon Conseil
author_email = [email protected]
keywords = astronomy, astrophysics, science, muse, vlt
license = MIT License
license_file = LICENSE
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.7
install_requires =
numpy
scipy
matplotlib
astropy
mpdaf
tqdm
joblib
PyYAML
photutils>=0.5
[options.extras_require]
docs = numpydoc>=0.9; sphinx_rtd_theme; sphinx-automodapi; nbsphinx
[options.packages.find]
exclude =
tests
tests.*
[tool:pytest]
addopts = --doctest-glob='*.rst'
minversion = 3.7.0
testpaths = docs muse_origin tests
[isort]
multi_line_output = 3
include_trailing_comma = True
known_third_party=numpy,scipy,astropy,mpdaf,joblib,matplotlib,photutils,yaml
[flake8]
max-line-length = 88