Skip to content

Commit

Permalink
Just requirements fix for pypi install in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rvojcik committed Jul 30, 2020
1 parent 90f916f commit 3888f85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rtapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
found on https://www.racktables.org/
"""
__author__ = "Robert Vojcik ([email protected])"
__version__ = "0.2.8"
__version__ = "0.2.9"
__copyright__ = "OpenSource"
__license__ = "GPLv2"

Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
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.2.8",
version="0.2.9",
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]",
Expand All @@ -21,6 +25,7 @@
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3",
"Topic :: Database"
]
Expand Down

0 comments on commit 3888f85

Please sign in to comment.