-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
35 lines (30 loc) · 1.11 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_reqs = fh.read().split()
setup(
name="racktables-api",
version="0.3.1",
packages=["rtapi"],
license="GPLv2",
description="Simple racktables API",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_reqs,
url="https://github.com/rvojcik/rtapi",
author="Robert Vojcik",
author_email="[email protected]",
keywords=['rtapi', 'racktables', 'racktables api', 'racktables-api','racktables cli','racktables-cli'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Database"
]
)