This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.cfg
80 lines (73 loc) · 1.95 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
[metadata]
name = probfit
description = Distribution Fitting/Regression Library
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/scikit-hep/probfit
author = Piti Ongmongkolkul
author_email = [email protected]
maintainer = The Scikit-HEP admins
maintainer_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 7 - Inactive
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
[options]
packages = find:
install_requires =
iminuit<1.4; python_version <"3.5"
iminuit<2; python_version >="3.5"
numpy
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
zip_safe = False
[options.extras_require]
dev =
matplotlib>=2.0
pytest>=4.6
pytest-cov
pytest-mpl<0.11; python_version <"3.6"
pytest-mpl; python_version >="3.6"
docs =
ipython
sphinx
sphinx_rtd_theme
test =
pytest>=4.6
pytest-cov
pytest-mpl<0.11; python_version <"3.6"
pytest-mpl; python_version >="3.6"
[options.packages.find]
include =
probfit
[check-manifest]
ignore =
doc/**
.*
*.c
[tool:isort]
profile = black
multi_line_output = 3
[flake8]
max-complexity = 14
# E731: assign a lambda
# F403: import *
# F405: undefined or star import
# E741: ambiguous variable name l
ignore = E203, E231, E501, E722, W503, B950, E731, E741
select = C,E,F,W,B,B9
per-file-ignores =
probfit/__init__.py: F403, F405
doc/conf.py: E402, E265