mirror of
https://github.com/topjohnwu/samloader.git
synced 2025-02-17 01:49:31 +00:00
33 lines
865 B
Python
33 lines
865 B
Python
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="samloader",
|
|
version="0.2",
|
|
author="nlscc",
|
|
author_email="dontsendmailhere@example.com",
|
|
description="A tool to download firmware for Samsung phones.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"samloader = samloader.main:main",
|
|
],
|
|
},
|
|
install_requires=[
|
|
"clint",
|
|
"pycryptodomex",
|
|
"requests"
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|