-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1.05 KB
/
setup.py
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("src/requirements.txt", "r") as fh:
requirements = fh.read().split('\n')
setuptools.setup(
name="python-deploy",
version="4.1.0",
author="msm, psrok1",
author_email="[email protected]",
description="Build, push and deploy k8s services with single "
"deploy.json file to provide common convention for "
"multiple production services.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
python_requires=">=3.8",
package_dir={"deploy": "src"},
url="https://github.com/CERT-Polska/python-deploy",
packages=["deploy"],
include_package_data=True,
scripts=["util/kubernetes_use_token"],
entry_points={
"console_scripts": ["deploy = deploy:main"]
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
],
)