-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
42 lines (38 loc) · 1.22 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
#!/usr/bin/env python
# Author: Jose Rodriguez (@Cyb3rPandaH)
# License: GNU General Public License v3 (GPLv3)
import setuptools
with open('README.md')as f:
long_description = f.read()
setuptools.setup (
name = 'openhunt',
version = '1.8.5',
author = 'Jose Rodriguez @Cyb3rPandaH',
description = 'A Python library to expedite the analysis of data during hunting engagements',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OTRF/openhunt",
keywords="threat hunting python pandas jupyter notebook",
packages=setuptools.find_packages(),
install_requires=[
'pandas',
'altair',
'seaborn',
'matplotlib',
'pyspark',
'plotly',
'networkx'
],
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Topic :: Security',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)