-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
70 lines (65 loc) · 1.61 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
[metadata]
name = zfit_interface
description = zfit model fitting interface for HEP
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/zfit/zfit-interface
author = Jonas Eschle <[email protected]>, Albert Puig <[email protected]>, Rafael Silva Coutinho <[email protected]>, Matthieu Marinangeli <[email protected]>
maintainer = zfit
maintainer_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: MacOS
Operating System :: Unix
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Physics
keywords = TensorFlow, model, fitting, scalable, HEP, zfit
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
testpaths = tests
zip_safe = False
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 140
exclude = */migrations/*
[tool:pytest]
norecursedirs =
.git
.tox
.env
dist
build
migrations
python_files =
test_*.py
*_test.py
tests.py
addopts =
-ra
--strict
--ignore=docs/conf.py
--ignore=setup.py
--ignore=ci
--ignore=.eggs
--doctest-modules
--doctest-glob=\*.rst
--tb=short
testpaths =
tests
[tool:isort]
force_single_line = True
line_length = 120
known_first_party = zfit_interface
default_section = THIRDPARTY
forced_separate = test_zfit_interface
not_skip = __init__.py
skip = migrations