From 0fb4fc20559c9a5de5a10c74c1247635a1523255 Mon Sep 17 00:00:00 2001 From: Wolfgang Müller Date: Sun, 14 Nov 2021 18:55:52 +0100 Subject: Initial commit --- setup.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a576a12 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +import setuptools + +setuptools.setup( + name="ywalk", + version="0.1.0", + author="Wolfgang Müller", + author_email="wolf@oriole.systems", + description="A fast-travel companion for The Elder Scrolls III: Morrowind", + url="https://git.oriole.systems/ywalk", + classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + packages=setuptools.find_packages(), + python_requires=">=3.8", + + entry_points = { + 'console_scripts': [ + 'ywalk = ywalk.main:main', + ] + } +) -- cgit v1.2.3-2-gb3c3