forked from packetchaos/navi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (45 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
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='navi pro',
version='7.5.29',
description="A command-line interface to Tenable.io",
long_description=long_description,
long_description_content_type='text/markdown',
author="Casey Reid",
author_email="[email protected]",
url="https://github.com/packetchaos/Navi",
license="GNUv3",
keywords='tenable tenable_io navi tio, lumin, navi pro, tio cli, tenable io cli, 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',
'flask>=1.1.4',
'IPy>=1.0',
'pytenable>=1.4.3',
'arrow>=0.17.0',
'boto3>=1.17.48',
'pexpect>=4.8.0',
'typing-extensions>=4.0.1',
'pandas>=1.1.5',
'numpy>=1.19.5',
'xlrd>=2.0.1'
],
python_requires='>=3.9',
extras_require={
},
entry_points={
'console_scripts': [
'navi=navi.cli:cli',
],
},
)