-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 918 Bytes
/
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
from setuptools import setup, find_packages
vftools_description = (
u'A set of forensics tools for analyzing evidence files or devices using dfVFS.'
)
setup(
name=u'vftools',
version=u'0.1 Beta',
descript=vftools_description,
packages=find_packages(),
include_package_data=True,
url=u'https://github.com/maurermj08/vftools',
license=u'Apache License Version 2.0',
author=u'Michael Maurer',
classifiers=[
u'Development Status :: 4 - Beta',
u'Environment :: Web Environment',
u'Operating System :: OS Independent',
u'Programming Language :: Python',
],
scripts=[u'vfcat', u'vfinfo', u'vfls'],
zip_safe=False,
install_requires=frozenset([u'argparse>=1.2.1',
u'dfvfs>=20150708',
u'elasticsearch>=2.1.0',
u'Jinja2>=2.1']),
author_email=u'maurermj08@gmail.com',
)