forked from LINXNet/pyocnos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
""" Python library to remotely manage/automate
switches running OcNOS operating system. """
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as requirements:
install_requires = [line.strip() for line in requirements if line and not line.startswith('#')]
version = '0.5.9'
setup(
name='pyocnos',
version=version,
py_modules=['pyocnos'],
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
description='Python API to interact with network devices running OcNOS',
author='LINX',
author_email='[email protected]',
url='https://github.com/LINXNet/pyocnos/',
download_url='https://github.com/LINXNet/pyocnos/tarball/%s' % version,
keywords=['OcNOS', 'networking'],
classifiers=[],
entry_points={
'console_scripts': ['pyocnos=pyocnos.command_line:main'],
}
)