-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (40 loc) · 1.22 KB
/
setup.py
File metadata and controls
executable file
·45 lines (40 loc) · 1.22 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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ivan pro',
version='2.1.1',
description="A command-line interface to Tenable Security Center",
long_description=long_description,
long_description_content_type='text/markdown',
author="Casey Reid",
author_email="itprofguru@gmail.com",
url="https://github.com/packetchaos/ivan",
license="GNUv3",
keywords='tenable securitycenter ivan tsc, automation',
packages=find_packages(exclude=['docs', 'tests']),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
'Click>=7.0',
'requests>=2.26.0',
'flask>=1.1.1',
'IPy>=1.0',
'pytenable>=1.4.3',
'arrow>=0.17.0',
'typing-extensions>=4.0.1'
],
python_requires='>=3.0',
extras_require={
},
entry_points={
'console_scripts': [
'ivan=ivan.cli:cli',
],
},
)