Skip to content

Commit 3888f85

Browse files
committed
Just requirements fix for pypi install in setup.py
1 parent 90f916f commit 3888f85

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

rtapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
found on https://www.racktables.org/
4040
"""
4141
__author__ = "Robert Vojcik ([email protected])"
42-
__version__ = "0.2.8"
42+
__version__ = "0.2.9"
4343
__copyright__ = "OpenSource"
4444
__license__ = "GPLv2"
4545

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

6+
with open("requirements.txt", "r") as fh:
7+
install_reqs = fh.read().split()
8+
69
setup(
710
name="racktables-api",
8-
version="0.2.8",
11+
version="0.2.9",
912
packages=["rtapi"],
1013
license="GPLv2",
1114
description="Simple racktables API",
1215
long_description=long_description,
1316
long_description_content_type="text/markdown",
17+
install_requires=install_reqs,
1418
url="https://github.com/rvojcik/rtapi",
1519
author="Robert Vojcik",
1620
author_email="[email protected]",
@@ -21,6 +25,7 @@
2125
"Operating System :: Unix",
2226
"Programming Language :: Python",
2327
"Programming Language :: Python :: 2.7",
28+
"Programming Language :: Python :: 3.7",
2429
"Programming Language :: Python :: 3",
2530
"Topic :: Database"
2631
]

0 commit comments

Comments
 (0)