-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (44 loc) · 1.59 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name="asyncpg_client",
version="0.6.1",
description="Asyncpg Client is a simple and easy-to-use asyncpg client for Python 3.6+",
author="Alireza Heidari",
author_email="alirezaheidari.cs@gmail.com",
url="https://github.com/deepmancer/asyncpg-client",
packages=find_packages(),
include_package_data=True,
install_requires=[
"asyncpg",
"sqlalchemy",
"psycopg2-binary",
"SQLAlchemy==2.0.0b3",
"python-decouple",
"pydantic>=2",
"pytest",
"pytest-asyncio",
"pytest-mock",
],
license='Apache License 2.0',
keywords="postgres async-postgres asyncpg asyncpg-client sessionmaker",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
python_requires='>=3.6',
project_urls={
"Documentation": "https://github.com/deepmancer/asyncpg-client#readme",
"Source": "https://github.com/deepmancer/asyncpg-client",
"Tracker": "https://github.com/deepmancer/asyncpg-client/issues",
},
)