Files
creyPY/setup.py
2024-04-01 18:37:33 +02:00

14 lines
352 B
Python

from setuptools import find_packages, setup
setup(
name="creyPY",
version="0.0.8",
description="My collection of Python and FastAPI shortcuts etc.",
author="Conrad Großer",
author_email="conrad@noah.tech",
packages=find_packages(),
url="https://github.com/creyD/creyPY",
license="MIT",
python_requires=">=3.12",
)