-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
53 lines (52 loc) · 1.45 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
50
51
52
53
import setuptools
from crackomatic._version import __version__
setuptools.setup(
name='Crack-O-Matic',
version=__version__,
author='Adrian Vollmer',
description='Find and notify users in your Active Directory '
'with weak passwords',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
url="https://github.com/AdrianVollmer/Crack-O-Matic",
project_urls={
"Read The Docs": "https://crack-o-matic.readthedocs.io",
"Issue Tracker":
"https://github.com/AdrianVollmer/Crack-O-Matic/issues",
},
packages=setuptools.find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'crackomatic=crackomatic.__main__:main'
],
},
install_requires=[
'flask>=1.0.2',
'flask-login>=0.4.1',
'flask-wtf',
'flask-migrate>=2.1.1',
'gevent>=1.3.7',
'sqlalchemy>=1.2.18',
'matplotlib>=3.0.2',
'wtforms>=2.2.0',
'ldap3>=2.4.1',
'argon2-cffi',
'babel>=2.6.0',
'toml>=0.10.0',
'packaging>=19.0',
],
python_requires='>=3.6',
extras_require={
'tests': [
'pytest',
'pytest-dotenv',
'python-dotenv',
'python-ldap',
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)