-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #878 from ktbyers/develop
Release Version 2.2.2
- Loading branch information
Showing
4 changed files
with
30 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest>=3.2.5 | ||
pylama | ||
tox | ||
pytest==2.9.1 | ||
pylama==7.4.3 | ||
tox==2.5.0 | ||
twine==1.11.0 | ||
pysnmp | ||
-r requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,25 @@ | |
from setuptools import find_packages | ||
import os | ||
import re | ||
import sys | ||
|
||
|
||
requirements = [ | ||
'paramiko>=2.0.0', | ||
'scp>=0.10.0', | ||
'pyyaml', | ||
'pyserial', | ||
'textfsm', | ||
] | ||
|
||
# Cryptography library makes this necessary as older versions of PIP (PIP7 and less) | ||
# will not auto_install enum34 from extras_require. | ||
if sys.version_info < (3,): | ||
requirements.append("enum34") | ||
requirements.append("ipaddress") | ||
|
||
with open("README.md", "r") as fs: | ||
long_description = fs.read() | ||
|
||
|
||
def find_version(*file_paths): | ||
|
@@ -26,6 +45,8 @@ def find_version(*file_paths): | |
name='netmiko', | ||
version=find_version('netmiko', '__init__.py'), | ||
description='Multi-vendor library to simplify Paramiko SSH connections to network devices', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/ktbyers/netmiko', | ||
author='Kirk Byers', | ||
author_email='[email protected]', | ||
|
@@ -40,13 +61,7 @@ def find_version(*file_paths): | |
'Programming Language :: Python :: 3.6', | ||
], | ||
packages=find_packages(exclude=("test*", )), | ||
install_requires=[ | ||
'paramiko>=2.0.0', | ||
'scp>=0.10.0', | ||
'pyyaml', | ||
'pyserial', | ||
'textfsm' | ||
], | ||
install_requires=requirements, | ||
extras_require={ | ||
'test': ['pytest>=3.2.5', ] | ||
}, | ||
|