Skip to content

Commit 4a22a7e

Browse files
author
Thomas
committed
Prepared setup for version 0.13
1 parent 4132a5e commit 4a22a7e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@
33
import os
44
from setuptools import setup, find_packages
55

6+
67
def read(fname):
78
return open(os.path.join(os.path.dirname(__file__), fname)).read()
89

10+
911
def readme():
1012
with open('README.rst') as f:
1113
return f.read()
1214

15+
1316
setup(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',
1922
author_email='[email protected]',
2023
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 = [

0 commit comments

Comments
 (0)