-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
43 lines (39 loc) · 998 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
[metadata]
name = portainer_deploy_tool
version = 0.0.5
author = hsz
author_email = [email protected]
description = portainer deploy tool for swarm
long_description = file: README.md, CHANGELOG.md, LICENSE
long_description_content_type = text/markdown
keywords = portainer, docker-compose, git
license = MIT License
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
zip_safe = False
include_package_data = True
install_requires =
requests >= 2.25.1
PyYaml >= 5.3.1
schema-entry >= 0.1.5
pyloggerhelper >= 0.0.3
tests_require =
coverage >= 5.5
mypy >= 0.800
autopep8 >= 1.5.6
pylint >= 2.8.0
pydocstyle>=6.0.0
setup_requires =
setuptools >= 40.9.0
wheel
packages = find:
[options.packages.find]
include = portainer_deploy_tool
exclude = tests
[options.entry_points]
console_scripts =
portainer_deploy_tool = portainer_deploy_tool.__main__:main