From 13ea826cfbe7205a0ffa54144e2ddf7229bd86e6 Mon Sep 17 00:00:00 2001 From: EKNr1 Date: Sat, 7 Dec 2024 19:01:21 +0100 Subject: [PATCH] Added setup.py --- setup.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ffab08c --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +#!/usr/bin/python3 + +from setuptools import setup +from pathlib import Path + +this_directory = Path(__file__).parent # use readme file as long description +long_description = (this_directory / "README.md").read_text() + +setup( + name='wobbl_tools', + version="0.0", + description="A module that The Wobbler uses for his projects.", + long_description=long_description, + long_description_content_type="text/markdown", + author="The Wobbler", + author_email="emil@i21k.de", + url="https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools", + packages=[ + "wobbl_tools" + ], + install_requires=[ + "deprecated", + ], + extras_require={ + "pygame": ["pygame"], + }, +)