-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.cfg
70 lines (64 loc) · 1.8 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 = BTVNanoCommissioning
description = Tools for running the CMS BTV POG Commissioning workflows on NanoAOD
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cms-btv-pog/BTVNanoCommissioning
author = Andrzej Novak
author_email = [email protected]
maintainer = Andrzej Novak
maintainer_email = [email protected]
license = BSD-3-Clause
license_file = 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
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
project_urls =
Documentation =
Bug Tracker = https://github.com/cms-btv-pog/BTVNanoCommissioning/issues
Discussions = https://github.com/cms-btv-pog/BTVNanoCommissioning/discussions
Changelog = https://github.com/cms-btv-pog/BTVNanoCommissioning/releases
[options]
packages = find:
install_requires =
vector
coffea==0.7.22
python_requires = <3.11
include_package_data = True
scripts =
scripts/plotdataMC.py
scripts/comparison.py
scripts/fetch.py
scripts/make_template.py
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
dev =
pytest>=6
black==24.2.0
# docs =
# Sphinx~=3.0
# myst_parser>=0.13
# sphinx-book-theme>=0.1.0
# sphinx_copybutton
test =
pytest>=6
[flake8]
ignore = E203, E231, E501, E722, W503, B950
select = C,E,F,W,T,B,B9,I
per-file-ignores =
tests/*: T