-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
34 lines (31 loc) · 867 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
[metadata]
name = unit4
version = 0.0.2
author = Melvin Folkers (Zyp)
author_email = [email protected], [email protected]
description = Package for pulling datasets using the Unit4 Multivers API
long_description = file: README.md
long_description_content_type = text/markdown
keywords = python, sampleproject
url = https://github.com/zypp-io/sampleproject
project_urls =
Bug Tracker = https://github.com/zypp-io/unit4/issues
Source = https://github.com/zypp-io/unit4
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = unit4
python_requires = >=3.7
install_requires =
pandas==1.3.4
requests==2.31.0
[options.packages.find]
where = unit4
[flake8]
statistics = True
count = True
max-complexity=10
max-line-length=120
per-file-ignores=__init__.py: F401