forked from bkerler/mtkclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (38 loc) · 1.01 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
import os
setup(
name='mtkclient',
version='1.9',
packages=find_packages(),
long_description=open("README.md").read(),
scripts=['mtk','stage2'],
data_files = ['LICENSE','README.md'],
long_description_content_type="text/markdown",
url='https://github.com/bkerler/mtkclient',
project_urls={
"Bug Tracker": "https://github.com/bkerler/mtkclient/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3 License",
"Operating System :: OS Independent",
],
license='GPLv3 License',
install_requires=[
'colorama',
'usb',
'pyusb',
'pyserial',
'pycryptodome',
'pycryptodomex',
'PySide6',
'mock'
],
author='B. Kerler',
author_email='info@revskills.de',
description='Mediatek reverse engineering and flashing tools',
python_requires=">=3.7",
include_package_data=True,
zip_safe=False
)