forked from macvjuhu/fmc_rest_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 984 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
33
34
35
from setuptools import find_packages
from setuptools import setup
from os import path
def readme():
current_dir = path.abspath(path.dirname(__file__))
with open(path.join(current_dir, 'README.rst'), encoding='utf-8') as f:
return f.read()
setup(
name='fmc_rest_client',
version='0.5.2',
python_requires='>=3',
description='FMC REST API Client',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Security',
'Topic :: System :: Networking :: Firewalls',
],
keywords='firepower management rest-api',
url='https://github.com/macvjuhu/fmc_rest_client',
author='Vikas Sharma',
author_email='macvjuhu@yahoo.com',
license='MIT',
packages=find_packages(),
install_requires=[
'requests'
],
include_package_data=True,
zip_safe=False)