-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 738 Bytes
/
setup.py
File metadata and controls
37 lines (36 loc) · 738 Bytes
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
from setuptools import setup
setup(
name='basecrack',
version=4.0 ,
description='Decode All Bases - Base Scheme Decoder',
author='Mufeed VH',
url='https://github.com/mufeedvh/basecrack',
license='MIT',
packages=[
'src'
],
py_modules=[
'basecrack'
],
install_requires=[
'argparse',
'colorama',
'termcolor',
'pathlib',
'anybase32',
'base36',
'base58',
'pybase62',
'base91',
'pybase100',
'exifread',
'opencv-python',
'pytesseract'
],
python_requires='>=3.0.0',
entry_points={
'console_scripts': [
'basecrack = basecrack:main'
]
}
)