-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.03 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
35
36
37
38
39
40
from sys import version_info
from setuptools import find_packages, setup
minimum_python_version = (3, 6, 0)
if version_info[:3] < minimum_python_version:
raise RuntimeError(
'Unsupported python version {}. Please use {} or newer'.format(
'.'.join(map(str, version_info[:3])),
'.'.join(map(str, minimum_python_version)),
)
)
setup(
name='rt-operator',
version='0.1.0',
packages=find_packages(),
author='Chris Love',
author_email='christopherlove68@gmail.com',
include_package_data=True,
install_requires=[
'kubernetes>=24.0.0,<24.3.0',
],
entry_points={
'console_scripts': [
"rt-operator = rt_operator.rtoperator:main",
]
},
data_files=[
('etc', ['config/rt-operator.yaml']),
('service', ['rt-operator.service'])
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
)