forked from 05bit/peewee-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 856 Bytes
/
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
"""
Asynchronous interface for peewee ORM powered by asyncio.
"""
from setuptools import setup
__version__ = '0.3'
setup(
name="peewee-async",
version=__version__,
author="Alexey Kinev",
author_email='[email protected]',
url='https://github.com/05bit/peewee-async',
description=__doc__,
# long_description=__doc__,
license='MIT',
zip_safe=False,
install_requires=(
'peewee>=2.6.1',
'aiopg>=0.7.0',
),
py_modules=[
'peewee_async',
'peewee_asyncext'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
test_suite='tests',
)