-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (18 loc) · 832 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup,find_packages
with open("/Users/madewang/PycharmProjects/Input/CiscoSecurityDevice/README.md",'r') as fh:
long_description = fh.read()
setup(
name='CiscoSecurityDevice',
py_modules=['CiscoSecurityDevice'],
version='0.0.1',
description='This wrapper is designed to provide a unique interface to interact with ISE and FMC api.',
author='Madhuri Dewangan',
author_email='[email protected]',
package_dir={'':'CiscoSecurityDevice'},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests","ISE","fireREST"],
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7"]
)