-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 952 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 952 Bytes
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
#!/usr/bin/env python
from setuptools import setup
from Registry import _version_
setup(name='python-registry',
version=_version_,
description='Read access to Windows Registry files.',
author='Willi Ballenthin',
author_email='willi.ballenthin@gmail.com',
url='https://github.com/williballenthin/python-registry',
license='Apache License (2.0)',
packages=['Registry'],
classifiers = ["Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"],
install_requires=['enum-compat'],
entry_points = {
"console_scripts": [
"forensicating.py = samples.forensicating:main",
"amcache.py = samples.amcache:main",
"registry-timeline.py = samples.timeline:main",
]
}
)