-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (39 loc) · 1.51 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
import setuptools
from pyforhandbook import version
setuptools.setup(
name="pyforhandbook",
version=version.__version__,
author=version.__author__,
author_email="[email protected]",
description="Handbook of Python functions for rapid development "
"of forensic tools.",
url="https://chapinb.com/python-forensic-handbook",
packages=setuptools.find_packages(),
install_requires=[
'yarp @ git+https://github.com/msuhanov/[email protected]#egg=yarp',
'python-evtx==0.6.1',
'lxml==4.5.2',
],
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: System Administrators",
"Intended Audience :: Other Audience",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Utilities",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation"
]
)