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 33import os
44from setuptools import setup , find_packages
55
6+
67def read (fname ):
78 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
89
10+
911def readme ():
1012 with open ('README.rst' ) as f :
1113 return f .read ()
1214
15+
1316setup (name = 'python-netbox' ,
14- version = '0.0.12 ' ,
17+ version = '0.0.13 ' ,
1518 description = 'Python NetBox Client' ,
1619 long_description = readme (),
1720 python_requires = '>=3' ,
1821 author = 'Thomas van der Jagt' ,
19222023 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' ,
2225 packages = find_packages (),
2326 install_requires = ['ipaddress' , 'requests' ],
2427 classifiers = [
You can’t perform that action at this time.
0 commit comments