Async_ORM_Postgresql_Wrapper/setup.py

41 lines
1.1 KiB
Python
Raw Normal View History

2021-10-05 05:48:02 -05:00
# Build with python setup.py bdist_wheel
2021-10-05 05:14:45 -05:00
from setuptools import setup
2021-10-05 05:48:02 -05:00
with open("VERSION", "r") as v_f:
version = v_f.read()
with open("README.md", "r") as r_f:
long_description = r_f.read()
2021-10-05 05:14:45 -05:00
setup(
2021-10-05 05:48:02 -05:00
name="Async-Postgresql-Wrapper",
version=version,
packages=["asyncdb"],
install_requires=[
'sqlalchemy',
'asyncpg',
'psycopg2'
],
2021-10-05 05:48:02 -05:00
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. "
2021-10-05 05:14:45 -05:00
)
2021-10-05 05:48:02 -05:00