File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 39
39
found on https://www.racktables.org/
40
40
"""
41
41
__author__ = "Robert Vojcik ([email protected] )"
42
- __version__ = "0.2.8 "
42
+ __version__ = "0.2.9 "
43
43
__copyright__ = "OpenSource"
44
44
__license__ = "GPLv2"
45
45
Original file line number Diff line number Diff line change 3
3
with open ("README.md" , "r" ) as fh :
4
4
long_description = fh .read ()
5
5
6
+ with open ("requirements.txt" , "r" ) as fh :
7
+ install_reqs = fh .read ().split ()
8
+
6
9
setup (
7
10
name = "racktables-api" ,
8
- version = "0.2.8 " ,
11
+ version = "0.2.9 " ,
9
12
packages = ["rtapi" ],
10
13
license = "GPLv2" ,
11
14
description = "Simple racktables API" ,
12
15
long_description = long_description ,
13
16
long_description_content_type = "text/markdown" ,
17
+ install_requires = install_reqs ,
14
18
url = "https://github.com/rvojcik/rtapi" ,
15
19
author = "Robert Vojcik" ,
16
20
21
25
"Operating System :: Unix" ,
22
26
"Programming Language :: Python" ,
23
27
"Programming Language :: Python :: 2.7" ,
28
+ "Programming Language :: Python :: 3.7" ,
24
29
"Programming Language :: Python :: 3" ,
25
30
"Topic :: Database"
26
31
]
You can’t perform that action at this time.
0 commit comments