41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# Build with python setup.py bdist_wheel
|
|
|
|
from setuptools import setup
|
|
|
|
with open("VERSION", "r") as v_f:
|
|
version = v_f.read()
|
|
|
|
with open("README.md", "r") as r_f:
|
|
long_description = r_f.read()
|
|
|
|
setup(
|
|
name="Async-Postgresql-Wrapper",
|
|
version=version,
|
|
packages=["asyncdb"],
|
|
install_requires=[
|
|
'sqlalchemy',
|
|
'asyncpg',
|
|
'psycopg2'
|
|
],
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
"License :: OSI Approved :: MIT License",
|
|
],
|
|
python_requires=">=3.9",
|
|
url="https://gitlab.orion-technologies.io/open-source/async-orm-postgresql-wrapper",
|
|
license="MIT",
|
|
license_files=("LICENSE",),
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
zip_safe=True,
|
|
include_package_data=True,
|
|
include_dirs=False,
|
|
author="Price Hiller",
|
|
author_email="philler3138@gmail.com",
|
|
description="A simple sqlalchemy database wrapper to simplify asynchronous connections to Postgresql databases "
|
|
"with an orm. "
|
|
)
|
|
|
|
|