Lerndatenbank/setup.py
2024-08-05 20:46:07 +02:00

15 lines
470 B
Python

from setuptools import setup, find_packages
VERSION = '0.0.1'
setup(
name='lernplattform',
version=VERSION,
license='MIT',
description='Eine Plattform zum lernen nach dem Leitner System',
author='Manuel Weiser',
author_email='manuel.weiser@me.com',
url='https://gitlab.fire-devils.org/ManuelW/Lerndatenbank',
packages=find_packages(exclude=('tests', 'docs', instance, env, _idee, __pycache__, templates)),
python_requires='>=3.10'
)