-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.cfg
106 lines (97 loc) · 2.44 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
96
97
98
99
100
101
102
103
104
105
106
[metadata]
name = fastjet
description = Official FastJet bindings to Python and Awkward Array.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/scikit-hep/fastjet
author = Aryan Roy
author_email = [email protected]
maintainer = The Scikit-HEP admins
maintainer_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
platforms =
Any
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
project_urls =
Documentation = https://fastjet.readthedocs.io/
Bug Tracker = https://github.com/scikit-hep/fastjet/issues
Discussions = https://github.com/scikit-hep/fastjet/discussions
Changelog = https://github.com/scikit-hep/fastjet/releases
[options]
packages = find:
install_requires =
awkward>=2
numpy>=1.13.3
vector
python_requires = >=3.8
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
dask =
dask>=2023.4.0
dask-awkward>=2023.4.2
dev =
pytest>=4.6
docs =
Sphinx>=3.0.0
recommonmark>=0.5.0
sphinx-copybutton
sphinx-rtd-theme>=0.5.0
test =
pytest>=4.6
uproot>=5
dask>=2023.4.0;python_version>"3.7"
dask-awkward[test]>=2023.4.2;python_version>"3.7"
distributed>=2023.4.0;python_version>"3.7"
[tool:pytest]
addopts = -vv -rs -Wd
testpaths =
tests
[check-manifest]
ignore =
.github/**
docs/**
.pre-commit-config.yaml
.readthedocs.yml
.clang-format
src/*/version.py
[tool:isort]
profile = black
multi_line_output = 3
[flake8]
ignore = E203, E231, E501, E722, W503, B950
select = C,E,F,W,T,B,B9,I
per-file-ignores =
tests/*: T
[mypy]
files = src
python_version = 3.6
warn_unused_configs = True
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
no_implicit_reexport = True
strict_equality = True
[mypy-numpy]
ignore_missing_imports = True