-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (50 loc) · 1.85 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
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2020 Xvezda <xvezda@naver.com>
#
# Use of this source code is governed by an MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT.
from setuptools import setup, find_packages
with open('maskprocessor/__version__.py') as f:
exec(f.read())
def readme():
with open('README.md') as f:
return f.read()
setup(name=__title__,
author='Xvezda',
author_email='xvezda@naver.com',
license='MIT',
url='https://github.com/Xvezda/python-maskprocessor',
keywords=['hash', 'hashcat', 'maskprocessor', 'bruteforce'],
version=__version__,
packages=find_packages(),
description='Python maskprocessor implementation '
'which inspired by hashcat maskprocessor',
long_description_content_type='text/markdown',
long_description=readme(),
entry_points={
'console_scripts': [
'maskprocessor = maskprocessor.core:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Topic :: Utilities',
'Topic :: Security :: Cryptography',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
project_urls={
'Repository': 'https://github.com/Xvezda/python-maskprocessor',
'Bug Reports': 'https://github.com/Xvezda/python-maskprocessor/issues',
},
zip_safe=False)