Skip to content

Commit a34fc5b

Browse files
committed
Base setuptool changes
1 parent b3d95bb commit a34fc5b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,4 @@ target/
5858
examples/*.yaml
5959
tests/*.yaml
6060
/MANIFEST
61+
.pypirc

netdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from netdev.netdev_dispatcher import connect
22
from netdev.netdev_dispatcher import platforms
33

4-
__version__ = '0.1.1'
4+
__version__ = '0.1.2'
55
__all__ = ('connect', 'platforms')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
author='Yakovlev Sergey',
2020
author_email='selfuryon@gmail.com',
2121
description='Async network devices interaction library',
22-
requires=['asyncssh', 'yaml'],
22+
requires=['asyncssh>=1.5.3', 'pyyaml'],
2323
long_description=long_description,
2424
keywords='network automation',
2525
classifiers=[
@@ -29,7 +29,7 @@
2929
'Development Status :: 3 - Alpha',
3030
'License :: OSI Approved :: BSD License',
3131
'Programming Language :: Python :: 3.5',
32-
'Intended Audience :: System Administrators'
32+
'Intended Audience :: System Administrators',
3333
'Topic :: System :: Networking',
3434
],
3535
)

0 commit comments

Comments
 (0)