-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
95 lines (79 loc) · 2.02 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
85
86
87
88
89
90
91
92
93
94
95
[aliases]
test=pytest
[metadata]
name = astromodels
description = Astromodels contains models to be used in likelihood or Bayesian analysis in astronomy
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/threeml/astromodels
author_email = [email protected]
author = Giacomo Vianello
requires_python = >=3.9.0
project_urls =
Documentation = https://astromodels.readthedocs.io
Bug Tracker = https://github.com/threeML/astromodels/issues
Source Code = https://github.com/threeML/astromodels
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Scientific/Engineering :: Astronomy
Intended Audience :: Science/Research
Operating System :: POSIX
Programming Language :: Python :: 3.9
Environment :: Console
[options]
include_package_data = True
install_requires =
numpy>=1.6
PyYAML>=5.1
scipy>=0.14
astropy>=1.2
dill
future
interpolation>=2.2.3
numba
h5py
pandas
tables
colorama
omegaconf
rich
joblib
tests_require =
pytest
pytest-codecov
[options.extras_require]
tests =
pytest
docs =
sphinx>= 1.4
sphinx_rtd_theme
nbsphinx==0.8.8
sphinx-autoapi
# [options.packages.find]
# where = src
# exclude =
# tests
[versioneer]
VCS=git
style=pep440
versionfile_source=astromodels/_version.py
versionfile_build=astromodels/_version.py
tag_prefix=v
parentdir_prefix=astromodels-
[isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 80
[flake8]
ignore = E127,E201,E202,E203,E231,E252,E266,E402,E999,F841,W503,W605,F403,F401,E741
select = C,E,F,W,B,B950
extend-ignore = E203, E501
#extend-ignore = F401 # ignore unused
max-line-length = 88
exclude = .eggs,.git,docs,scripts,examples,setup.py,ci,build,dist,versioneer.py,conftest.py,astromodels/tests,*/*.ipynb_checkpoints
per-file-ignores =
*/*__init__.py:F401
astromodels/xspec/factory.py:W293