forked from ly4k/Certipy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (39 loc) · 1011 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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
with open("README.md") as f:
readme = f.read()
setup(
name="certipy-ad",
version="4.8.2",
license="MIT",
author="ly4k",
url="https://github.com/ly4k/Certipy",
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
"asn1crypto",
"cryptography>=39.0",
"impacket",
"ldap3",
"pyasn1==0.4.8",
"dnspython",
"dsinternals",
"pyopenssl>=23.0.0",
"requests",
"requests_ntlm",
'winacl; platform_system=="Windows"',
'wmi; platform_system=="Windows"',
"pycryptodome",
"unicrypto"
],
packages=[
"certipy",
"certipy.commands",
"certipy.commands.parsers",
"certipy.lib",
"certipy.lib.sspi",
],
entry_points={
"console_scripts": ["certipy=certipy.entry:main"],
},
description="Active Directory Certificate Services enumeration and abuse",
)