forked from Lainports/freebsd-ports
24 lines
1 KiB
Python
24 lines
1 KiB
Python
--- setup.py.orig 2024-12-24 05:02:53 UTC
|
|
+++ setup.py
|
|
@@ -41,12 +41,6 @@ except Exception:
|
|
except Exception:
|
|
VER_LOCAL = ""
|
|
|
|
-if platform.system() != 'Darwin':
|
|
- data_files = [(os.path.join('share', 'doc', PACKAGE_NAME), ['README.md', 'LICENSE']+glob.glob('doc/*'))]
|
|
-else:
|
|
- data_files = []
|
|
-
|
|
-
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
@@ -69,8 +63,6 @@ setup(
|
|
'impacket.examples.ntlmrelayx.servers.socksplugins', 'impacket.examples.ntlmrelayx.utils',
|
|
'impacket.examples.ntlmrelayx.attacks', 'impacket.examples.ntlmrelayx.attacks.httpattacks'],
|
|
scripts=glob.glob(os.path.join('examples', '*.py')),
|
|
- data_files=data_files,
|
|
-
|
|
install_requires=['pyasn1>=0.2.3', 'pyasn1_modules', 'pycryptodomex', 'pyOpenSSL==24.0.0', 'six', 'ldap3>=2.5,!=2.5.2,!=2.5.0,!=2.6',
|
|
'ldapdomaindump>=0.9.0', 'flask>=1.0', 'setuptools', 'charset_normalizer'],
|
|
extras_require={':sys_platform=="win32"': ['pyreadline3'],
|