-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsetup.py
executable file
·38 lines (32 loc) · 1.3 KB
/
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
36
37
38
#!/usr/bin/env python
import setuptools
from pathlib import Path
ROOT = Path(__file__).parent
with open(f'{ROOT}/README.md', 'r') as readme:
long_description = readme.read()
exec(open(f'{ROOT}/fireREST/version.py', 'r').read())
setuptools.setup(
name='fireREST',
version=__version__, # noqa: F821
author='Oliver Kaiser',
author_email='[email protected]',
description='Python api client for firepower management center',
keywords='cisco firepower fmc ftd fpr api rest python api',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kaisero/fireREST.git',
packages=setuptools.find_packages(),
install_requires=['packaging>=20.3', 'requests>=2.23.0', 'retry>=0.9.2', 'simplejson>=3.17.2', 'urllib3>=1.25.8'],
setup_requires=[],
tests_require=['pytest>=5.4.1', 'pytest-runner>=52'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX',
],
)