forked from scikit-hep/hist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
64 lines (60 loc) · 1.81 KB
/
setup.cfg
File metadata and controls
64 lines (60 loc) · 1.81 KB
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
[metadata]
name = hist
description = Hist classes and utilities
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/scikit-hep/hist
author = Henry Schreiner
author_email = henry.schreiner@cern.ch
maintainer = The Scikit-HEP admins
maintainer_email = scikit-hep-admins@googlegroups.com
license = BSD-3-Clause
license_file = LICENSE
platforms =
Any
classifiers =
Development Status :: 5 - Production/Stable
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
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Scientific/Engineering :: Mathematics
Topic :: Scientific/Engineering :: Physics
Typing :: Typed
keywords =
histogram
boost-histogram
project_urls =
Documentation = https://hist.readthedocs.io/
Bug Tracker = https://github.com/scikit-hep/hist/issues
Discussions = https://github.com/scikit-hep/hist/discussions
Changelog = https://hist.readthedocs.io/en/latest/changelog.html
[options]
packages = find:
install_requires =
boost-histogram~=1.1.0
histoprint>=1.6
numpy>=1.13.3
typing_extensions;python_version<"3.8"
python_requires = >=3.7
include_package_data = True
package_dir =
=src
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
hist=hist.classichist:main
[flake8]
max-line-length = 80
select = C, E, F, W, B, B9
ignore = E203, E231, E501, E722, W503, B950