-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
49 lines (45 loc) · 1.33 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
49
# 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="conpass",
version="0.1.2",
author="Pixis",
author_email="[email protected]",
description="Continuous password spraying tool",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["assets"]),
include_package_data=True,
url="https://github.com/Hackndo/conpass/",
zip_safe = True,
license="MIT",
install_requires=[
'python-ldap',
'impacket',
'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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'conpass = conpass.console:main',
],
}
)