-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.07 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.07 KB
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='k8s_autobuilder',
version='0.0.2',
description='A kubernetes-native CI/CD tool',
long_description=long_description,
license='MIT',
url='https://github.com/HubbeKing/k8s_autobuilder',
author='HubbeKing',
author_email='github@hubbe.club',
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools"
],
project_urls={
"Bug Tracker": "https://github.com/HubbeKing/k8s_autobuilder/issues"
},
packages=find_packages(),
python_requires='>=3.9',
install_requires=[
"Flask~=2.2.2",
"kubernetes~=24.2.0",
"gunicorn~=20.1.0",
"jq~=1.2.2",
"Werkzeug~=2.2.2"
]
)