-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 1003 Bytes
/
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
import sys
from setuptools import setup
if sys.version_info.major != 3:
raise RuntimeError("This package requires Python 3+")
with open('./requirements.txt') as r:
# strip fixed version info from requirements file
requirements = [line.split('=', 1)[0] for line in r]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='rancher-client',
version='0.0.1',
py_modules=['rancher'],
url='https://github.com/growthengineai/rancher-client',
license='MIT Style',
description='Python client for the Rancher API with Async Support',
author='Tri Songz',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
]
)