-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
42 lines (37 loc) · 1.37 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 setuptools import setup, find_packages
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="rt-server-client",
version="3.1.0",
packages=find_packages(),
license="GPLv3",
install_requires=install_reqs,
description="Racktables Server client for automation",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
scripts=[
"scripts/system-info",
"scripts/comment-edit",
"scripts/get-bios-ident",
],
url="https://github.com/rvojcik/rt-server-client",
author="Robert Vojcik",
author_email="[email protected]",
keywords=['rtapi', 'racktables', 'racktables automation', 'automation','server','racktables-client', 'rt-server-client', 'rt-client'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"Topic :: Database"
]
)