24 lines
681 B
Python
24 lines
681 B
Python
from setuptools import setup, find_packages
|
|
import pathlib
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
|
|
long_description = ( here / "README.md").read_text(encoding="utf-8")
|
|
|
|
setup(
|
|
name='kontor_schema',
|
|
version='0.1.0',
|
|
description='Schema for Konotor DB',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author='Thomas Peetz',
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.11",
|
|
],
|
|
install_requires=["sqlalchemy", "mariadb"],
|
|
packages=find_packages(),
|
|
)
|