-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (34 loc) · 1.27 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
from setuptools import setup, find_packages
exec(open("triopg/_version.py", encoding="utf-8").read())
LONG_DESC = open("README.rst", encoding="utf-8").read()
setup(
name="triopg",
version=__version__,
description="PostgreSQL client for Trio based on asyncpg",
url="https://github.com/python-trio/triopg",
long_description=LONG_DESC,
author="Emmanuel Leblond",
author_email="[email protected]",
license="MIT -or- Apache License 2.0",
packages=find_packages(),
install_requires=[
"trio>=0.7.0",
"trio-asyncio>=0.9.0",
"asyncpg>=0.15.0",
],
keywords=["async", "trio", "sql", "postgresql", "asyncpg"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Framework :: Trio",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: SQL",
],
)