-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
setup.py
48 lines (44 loc) · 1.28 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
47
48
# 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="3.1.12",
author="Pixis",
author_email="[email protected]",
description="Python library to extract credentials from lsass remotely",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["assets", "tests*"]),
include_package_data=True,
url="https://github.com/Hackndo/lsassy/",
zip_safe = True,
license="MIT",
install_requires=[
'impacket',
'netaddr',
'pypykatz>=0.6.3',
'rich'
],
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.console:main',
],
},
test_suite='tests.test_lsassy'
)