Skip to content

Commit

Permalink
Added requirements to extras.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bobby Watson committed Oct 2, 2017
1 parent 2ebb940 commit 4f1dea5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def requirements(filename):

setup(
name="aeon-venos",
version="0.9.0",
version="0.9.1",
author="Jeremy Schulman",
url='https://github.com/Apstra/aeon-venos',
author_email="jeremy@apstra.com",
Expand All @@ -32,11 +32,11 @@ def requirements(filename):
package_dir={'': libdir},
packages=packages,
extras_require={
"eos": ["pyeapi"],
"nxos": ["lxml", "requests"],
"cumulus": ["paramiko<2.0.0"],
"ubuntu": ["paramiko<2.0.0"],
"centos": ["paramiko<2.0.0"]
"eos": ["pyeapi", "pexpect==4.2.1"],
"nxos": ["lxml", "requests", "pexpect==4.2.1"],
"cumulus": ["paramiko<2.0.0", "pexpect==4.2.1"],
"ubuntu": ["paramiko<2.0.0", "pexpect==4.2.1"],
"centos": ["paramiko<2.0.0", "pexpect==4.2.1"]
},
scripts=glob('bin/*'),
classifiers=[
Expand Down

0 comments on commit 4f1dea5

Please sign in to comment.