-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
71 lines (59 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= mkShapesRDF
version= 0.0.1
author=Giorgio Pizzati
description= Lightweight framework to create shapes
url=https://github.com/giorgiopizz/mkShapesRDF/
classifiers=
Programming Language :: Python :: 3.7
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
zip_safe = False
install_requires =
requests
CMSJMECalculators @ git+https://gitlab.cern.ch/cp3-cms/CMSJMECalculators.git
tabulate
cloudpickle
pytest
packages = find_namespace:
package_dir =
= .
[options.package_data]
* =
*
[options.extras_require]
docs =
sphinx
numpydoc
pydata-sphinx-theme
sphinx-argparse
dev =
flake8
black
pre-commit
pytest-xdist[psutil]
[options.entry_points]
console_scripts =
mkShapesRDF = mkShapesRDF.shapeAnalysis.mkShapesRDF:main
mkDatacards = mkShapesRDF.shapeAnalysis.latinos.mkDatacards:main
mkPlot = mkShapesRDF.shapeAnalysis.latinos.mkPlot:main
mkPostProc = mkShapesRDF.processor.scripts.mkPostProc:main
[options.packages.find]
exclude =
examples*
docs*
logs*
myenv*
[flake8]
max-line-length = 88
# E203: whitespace before ':' -> black
# E501: line too long -> ok
# F821: undefined name variable -> when executing python code is useless
extend-ignore = E203, E501, F821
per-file-ignores =
tests/*.py:F401
mkShapesRDF/shapeAnalysis/latinos/mkDatacards.py:E722,W605
examples/*/*.py:E266
mkShapesRDF/processor/framework*.py:E266,E262
exclude = **/condor,docs,myenv,examples/*,mkShapesRDF.*,mkShapesRDF/processor/data*,mkShapesRDF/processor/condor*