forked from fortinet-solutions-cse/fortiosapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 956 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
29
30
31
32
#!/usr/bin/env python
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='fortiosapi',
version='0.10.0',
description=('Python modules to use Fortigate APIs'
'full configuration, monitoring, lifecycle rest and ssh'),
long_description=readme(),
# Valid Classifiers are here:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python ',
'Topic :: Security',
],
keywords='Fortinet fortigate fortios rest api',
install_requires=['requests', 'paramiko', 'oyaml'],
author='Nicolas Thomas',
author_email='[email protected]',
url='https://github.com/fortinet-solutions-cse/fortiosapi',
include_package_data=True,
packages=['fortiosapi'],
)