forked from marksull/fmcapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.93 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.93 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
__author__ = "Dax Mickelson"
__author_email = "dmickels@cisco.com"
__license__ = "BSD"
setup(
name='fmcapi',
version='0.52.2',
description="Easier interface to Cisco's FMC API than writing your own way.",
long_description="""With the removal to configure a Cisco NGFW via the command line your only option is to
do so via a manager. Some things are better when automated so using the manager's API gives us that power.
However, the current way to write external scripts and interact with the FMC's API isn't that great. We created
this "wrapper" to give you an easier to use way of communicating with the FMC's API than using the example code
provided in the API Explorer.""",
url='https://github.com/daxm/fmcapi',
author=__author__,
author_email=__author_email,
license=__license__,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Education',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking :: Firewalls',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
keywords='fmcapi fmc ftd security cisco ngfw api',
packages=find_packages(exclude=['docs', 'tests*']),
install_requires=['requests', 'datetime', 'ipaddress'],
package_data={},
data_files=None,
)