forked from bigswitch/pybsn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 658 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='pybsn',
version='0.4.0',
description="pybsn is a python interface to Big Switch Networks' products",
url='https://github.com/floodlight/pybsn',
author='Andreas Wundsam, Andre Kutzleb, Jason Parraga, Rich Lane',
author_email='Andreas.Wundsam@arista.com, Andre.Kutzleb@arista.com',
license='ECLIPSE',
packages=['pybsn'],
zip_safe=False,
install_requires=[
"requests >= 2.3.0",
"IPython >= 7.9",
"traitlets >= 4.3.3",
],
tests_require=[
"responses >= 0.10.6"
],
scripts=['bin/pybsn-repl', 'bin/pybsn-schema'],
test_suite="test",
)