File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 3
3
import os
4
4
from setuptools import setup , find_packages
5
5
6
+
6
7
def read (fname ):
7
8
return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
8
9
10
+
9
11
def readme ():
10
12
with open ('README.rst' ) as f :
11
13
return f .read ()
12
14
15
+
13
16
setup (name = 'python-netbox' ,
14
- version = '0.0.12 ' ,
17
+ version = '0.0.13 ' ,
15
18
description = 'Python NetBox Client' ,
16
19
long_description = readme (),
17
20
python_requires = '>=3' ,
18
21
author = 'Thomas van der Jagt' ,
19
22
20
23
url = 'https://github.com/jagter/python-netbox' ,
21
- download_url = 'https://github.com/jagter/python-netbox/releases/tag/0.0.12 .tar.gz' ,
24
+ download_url = 'https://github.com/jagter/python-netbox/releases/tag/0.0.13 .tar.gz' ,
22
25
packages = find_packages (),
23
26
install_requires = ['ipaddress' , 'requests' ],
24
27
classifiers = [
You can’t perform that action at this time.
0 commit comments