-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
46 lines (45 loc) · 1.47 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
from setuptools import setup, find_packages
setup(
name='dynamite-nsm',
version='1.1.4',
packages=find_packages(),
python_requires='>=3.7.0',
scripts=['scripts/dynamite', 'scripts/dynamite-remote'],
url='https://github.com/DynamiteAI/dynamite-nsm',
long_description_content_type="text/markdown",
license='GPL 3',
author='Dynamite Analytics',
author_email='admin@dynamite.ai',
description='DynamiteNSM is a lightweight, versatile network security monitor designed to '
'make securing your network environment simple and intuitive.',
include_package_data=True,
package_data={
'dynamite_nsm': ['bin/*']
},
install_requires=[
'bcrypt==3.2.0',
'coloredlogs==15.0',
'progressbar==2.5',
'tabulate==0.8.9',
'PyYAML==6.0',
'psutil==5.8.0',
'docstring-parser==0.7.3',
'marshmallow==3.11.1',
'pytest==6.2.2',
'python-crontab==2.5.1',
'python-daemon==2.3.0',
'requests==2.25.1',
'SQLAlchemy==1.4.7',
'Unidecode==1.2.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Security',
'License :: OSI Approved :: GNU General Public License (GPL)'
]
)