-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 808 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
import sys
import setuptools
sys.path.append("src")
# noinspection PyPep8
from cli_wrapper.__constants import app_name, author, url, issues_url
# noinspection PyPep8
from ddstyleconverter import __version__
setuptools.setup(
name=app_name,
version=__version__,
author=author,
author_email="29666253+watermelonwolverine@users.noreply.github.com",
description="Changes the style of DungeonDraft with the help of conversion maps.",
url=url,
project_urls={
"Bug Tracker": issues_url,
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.8",
)