diff options
author | Nayil Mukhametshin <66028747+nlscc@users.noreply.github.com> | 2020-05-25 17:22:43 +0200 |
---|---|---|
committer | Nayil Mukhametshin <66028747+nlscc@users.noreply.github.com> | 2020-05-25 17:22:43 +0200 |
commit | 6273f3634b72c0df21c2ece52b750b8834b7fed2 (patch) | |
tree | d01f11b47087320eeabf64f20a62687ecea6ee13 /setup.py | |
download | samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.gz samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.bz2 samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.lz samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.xz samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.tar.zst samloader-6273f3634b72c0df21c2ece52b750b8834b7fed2.zip |
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6876137 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="samloader", + version="0.1", + author="Nayil Mukhametshin", + author_email="me@nayilm.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:cli", + ], + }, + install_requires=[ + "click", + "clint", + "pycrypto", + "requests" + ], + python_requires='>=3.6', +) |