-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
50 lines (47 loc) · 936 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[metadata]
name = incognia-python
description = Python lightweight client library for Incognia APIs
long_description = file: README.md
long_description_content_type = text/markdown
author = Incognia
author_email = [email protected]
url = https://github.com/inloco/incognia-python
license = MIT
license_files = LICENSE.txt
python_requires = >= 3.8
classifiers =
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
zip_safe = False
packages = find:
install_requires =
requests
[options.packages.find]
exclude =
tests
tests.*
[flake8]
count = True
exclude =
.svn,
CVS,
.bzr,
.hg,
.git,
__pycache__,
.tox,
.eggs,
*.egg,
.env,
.venv,
env/,
venv/,
ENV/,
env.bak/,
venv.bak/
max-line-length = 100
show_source = True
statistics = True