-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
61 lines (55 loc) · 1.6 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
[metadata]
name = simplify
version = 0.1.10
author = Eric Schanet
description = Produce simplified likelihoods of different formats
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD 3-Clause
license_file = LICENSE
project_urls =
Source = https://github.com/eschanet/simplify
Tracker = https://github.com/eschanet/simplify/issues
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Intended Audience :: Science/Research
[options]
packages = find:
package_dir =
= src
python_requires = >=3.7
install_requires =
pyhf[minuit]>=0.6.3
awkward>=1.0.0
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
simplify = simplify.cli:simplify
[tool:pytest]
addopts = --cov=simplify --cov-report html --cov-report term-missing --cov-branch -rsx --typeguard-packages=simplify
filterwarnings =
ignore::DeprecationWarning:uproot:
ignore:no type annotations present:UserWarning:typeguard:
[flake8]
# E501: line too long
extend-ignore = E501
max-complexity = 12
max-line-length = 88
count = True
statistics = True
import-order-style = google
application-import-names = simplify
per-file-ignores =
example.py: T
[pytype]
inputs = src/simplify