forked from MRepoApp/magisk-modules-repo-util
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (30 loc) · 910 Bytes
/
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
from setuptools import setup, find_packages
from sync import __version__
setup(
name="mmrl-util",
version=__version__.get_version(),
description="A tool to build your own Magisk Modules Repository",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Der_Googler & Sanmer",
author_email="jimmy@dergooglr.com",
url="https://github.com/Googlers-Repo/magisk-modules-repo-util",
license="GPL-3.0",
packages=find_packages(),
install_requires=[
"pygithub>=1.59.0",
"python-dateutil>=2.8.2",
"requests>=2.31.0",
"tabulate>=0.9.0",
"gitpython>=3.1.37",
"validators>=0.28.3",
"pyyaml>=6.0.2",
"python-magic>=0.4.27"
],
entry_points={
"console_scripts": [
"mmrl-util=sync.__main__:main",
],
},
python_requires=">=3.7",
)