forked from rvojcik/rtapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 919 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="racktables-api",
version="0.2.4",
packages=["rtapi"],
license="GPLv2",
description="Simple racktables API",
long_description=long_description,
long_description_content_type="text/markdown",
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 :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Database"
]
)