-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
56 lines (52 loc) · 1.24 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
[metadata]
name = resourcerer
author = Krzysztof Czarnecki
author_email = [email protected]
version = attr: resourcerer.__version__
url = https://github.com/Technica-Engineering/resourcerer
description =
Gets resource files for testing from a configured
remote location allowing you to separate code from
test resources
long_description = file: README.md
long_description_content_type = text/markdown
keywords = automation, testing, resources, download, onedrive
license = MIT
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.7
install_requires =
pyyaml
[options.entry_points]
console_scripts =
get_resources = resourcerer.get_resources:main
send_resources = resourcerer.send_resources:main
[options.extras_require]
dev =
flake8
twine
setuptools
autopep8
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
.tox,
.nox,
.pytest_cache
max_complexity = 16
max_line_length = 100
ignore =
E731
E116
E114
E221
E241