forked from GingerAvalanche/botw_actor_tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 1 KB
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
from botw_actor_tool.__version__ import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="botw_actor_tool",
version=VERSION,
author="Ginger",
author_email="chodness@gmail.com",
description="Utility for editing actors in LoZ:BotW",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/GingerAvalanche/botw_actor_tool",
include_package_data=True,
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["botw_actor_tool = botw_actor_tool.__main__:main"]},
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
python_requires=">=3.7.4",
install_requires=["wxPython>=4.1.0", "oead>=0.11.2", "PyMsyt>=0.3.0", "update_check>=0.0.11"],
)