-
Notifications
You must be signed in to change notification settings - Fork 244
/
setup.py
20 lines (18 loc) · 837 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import mentalist
from setuptools import setup
setup(name='Mentalist',
version=mentalist.version,
author='sc0tfree',
author_email='henry@sc0tfree.com',
license='MIT',
description='Mentalist is a graphical tool for custom wordlist generation. It utilizes common human paradigms for constructing passwords and can output the full wordlist or rules.',
keywords='wordlist wordlist-generator passwords',
packages=['mentalist', 'mentalist.view', 'mentalist.data', 'tests',
'mentalist.icons'],
entry_points={'gui_scripts': 'mentalist = mentalist.controller:main'},
test_suite='tests.test_model',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
package_data={'mentalist': ['data/*.txt', 'data/*.psv']},
include_package_data=True,
)