-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 859 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 859 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
version = {}
with open('asyncpgsa/version.py') as f:
exec(f.read(), version)
setup(
name='asyncpgsa',
version=version['__version__'],
install_requires=[
'asyncpg>=0.22.0',
'sqlalchemy',
],
packages=['asyncpgsa', 'asyncpgsa.testing'],
url='https://github.com/canopytax/asyncpgsa',
license='Apache 2.0',
author='nhumrich',
author_email='nick.humrich@canopytax.com',
description='sqlalchemy support for asyncpg',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
],
)