forked from scikit-hep/boost-histogram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
77 lines (74 loc) · 2.4 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
[metadata]
name = boost_histogram
description = The Boost::Histogram Python wrapper.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/scikit-hep/boost-histogram
author = Hans Dembinski and Henry Schreiner
author_email = [email protected]
maintainer = Hans Dembinski and Henry Schreiner
maintainer_email = [email protected]
license = BSD-3-Clause
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: C++
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
Topic :: Software Development
Topic :: Utilities
Typing :: Typed
keywords =
histogram
boost-histogram
project_urls =
Documentation = https://boost-histogram.readthedocs.io/
Bug Tracker = https://github.com/scikit-hep/boost-histogram/issues
Discussions = https://github.com/scikit-hep/boost-histogram/discussions
Changelog = https://boost-histogram.readthedocs.io/en/latest/CHANGELOG.html
Chat = https://gitter.im/HSF/PyHEP-histogramming
[options]
packages = find:
install_requires =
numpy>=1.13.3
dataclasses;python_version<'3.7'
typing-extensions;python_version<'3.8'
python_requires = >=3.6
include_package_data = True
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[flake8]
max-complexity = 13
extend-select = B9
extend-ignore = B950, E501, E203, W503
per-file-ignores =
tests/*: T
examples/*: T
notebooks/*: T
docs/*: T
scripts/*: T
setup.py: T
setup_helpers.py: C901