-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
94 lines (86 loc) · 2.32 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
[metadata]
name = boris
version = attr: boris._version.__version__
description = Bayesian reconstruction of incident nuclear spectra
long_description = file: README.md
long_description_content_type = text/markdown
url = "https://github.com/op3/boris"
author = "Oliver Papst"
maintainer_email = opapst@ikp.tu-darmstadt.de
license = GPL
license_file = COPYING
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Information Technology
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Operating System :: MacOS
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: UNIX
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Physics
download_url = "https://github.com/op3/boris/releases"
keywords =
analysis
data-analysis
gamma-spectroscopy
nuclear-physics
nuclear-spectrum-analysis
physics
python
spectroscopy
[options]
packages = find:
install_requires =
arviz>=0.10.0
hist
numpy
pymc>=5.1.1
tqdm
uproot>=4.1.0
python_requires = >=3.10
package_dir =
=src
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
boris = boris.boris_app:boris_app
boris2spec = boris.boris2spec_app:boris2spec_app
makematrix = boris.makematrix_app:makematrix_app
sirob = boris.sirob_app:sirob_app
checkmatrix = boris.checkmatrix_app:checkmatrix_app
[options.extras_require]
test =
flake8
h5py
pytest>=4.6
pytest-cov
[aliases]
test = pytest
[tool:pytest]
addopts =
--cov=boris
--verbose
--cov-report term-missing
--tb native
--strict-markers
[tool:isort]
profile = black
multi_line_output = 3
[flake8]
ignore = E203, W503, E501, E266, N, D200, D102, D105, D107, D401, D402, D205, D400, D301
max-complexity = 100
exclude = tests/*.py, setup.py, boris/__init__.py
per-file-ignores =
__init__.py: F401, D104