This commit is contained in:
2025-08-30 10:30:43 +02:00
commit 912c7ed374
35 changed files with 2327 additions and 0 deletions

31
setup.py Normal file
View File

@ -0,0 +1,31 @@
import setuptools as st
with open("README.md", "r") as f:
long_description = f.read()
with open("LICENSE.md", "r") as f:
license_text = f.read()
st.setup(
name="schnitzeljagt",
version="0.1.0",
author="Oskar @ FaSTTUBe",
author_email="o.winkels@fasttube.de",
description="Small webapp to track games at the 20J FaSTTUBe festival",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.fasttube.de/FaSTTUBe/schnitzeljagt",
packages=st.find_packages(exclude=['tests', 'docs']),
install_requires=[
"flask",
"tinydb",
"python-slugify",
],
license=license_text,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)