Added const module

This commit is contained in:
2024-04-01 17:58:40 +02:00
parent 3688409e97
commit 1bedd453a8
10 changed files with 700 additions and 0 deletions

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from setuptools import find_packages, setup
setup(
name="creyPY",
version="0.0.5",
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",
)