-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
34 lines (29 loc) · 973 Bytes
/
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
# Static metadata (setup.cfg): guaranteed to be the same every time. This is
# simpler, easier to read, and avoids many common errors, like encoding errors.
[metadata]
name = gepard
version = 0.9.10
author = Krešimir Kumerički
author_email = kkumer@phy.hr
description = Tool for studying the 3D quark and gluon distributions in the nucleon
long_description = file: README.md
long_description_content_type = text/markdown
url = https://gepard.phy.hr/
project_urls =
Sources = https://github.com/kkumer/gepard
Bug Tracker = https://github.com/kkumer/gepard/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Operating System :: OS Independent
[options]
packages = gepard
python_requires = >=3.7
[mypy-joblib.*]
ignore_missing_imports = True
[mypy-gepard.pygepard]
ignore_missing_imports = True
[darglint]
docstring_style=google
strictness=short
ignore=DAR401