-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
28 lines (26 loc) · 953 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
import setuptools # type: ignore
from unrpa import meta
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name=meta.name,
version=meta.version,
author="Gareth Latty",
author_email="[email protected]",
description=meta.description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lattyware/unrpa",
packages=setuptools.find_packages(),
python_requires=">=3.7",
keywords="renpy rpa archive extract",
classifiers=[
"Topic :: System :: Archiving",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Environment :: Console",
],
entry_points={"console_scripts": ["unrpa = unrpa.__main__:main"]},
extras_require={"ZiX": "uncompyle6>=3.5.0"},
)