forked from login-securite/lsassy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.21 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
# Author:
# Romain Bentz (pixis - @hackanddo)
# Website:
# https://beta.hackndo.com [FR]
# https://en.hackndo.com [EN]
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="lsassy",
version="2.0.2",
author="Pixis",
author_email="hackndo@gmail.com",
description="Python library to parse remote lsass dumps",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["assets", "cme"]),
include_package_data=True,
url="https://github.com/hackanddo/lsassy",
zip_safe = True,
license="MIT",
install_requires=[
'impacket',
'pypykatz>=0.3.0'
],
python_requires='>=3.6',
classifiers=(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
entry_points={
'console_scripts': [
'lsassy = lsassy.core:run',
],
},
test_suite='tests.tests'
)