File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 12
12
__version__ = line .split ('=' )[1 ].strip ().strip ("'" ).strip ('"' )
13
13
break
14
14
15
+ long_description = \
16
+ """Current state: **alpha**, yet API seems fine and mostly stable.
17
+
18
+ In current version (0.5.x) new-high level API is introduced while older low-level API partially marked as deprecated.
19
+
20
+ * Works on Python 3.4+
21
+ * Has support for PostgreSQL via `aiopg`
22
+ * Has support for MySQL via `aiomysql`
23
+ * Single point for high-level async API
24
+ * Drop-in replacement for sync code, sync will remain sync
25
+ * Basic operations are supported
26
+ * Transactions support is present, yet not heavily tested
27
+
28
+ The source code is hosted on `GitHub`_.
29
+
30
+ .. _GitHub: https://github.com/05bit/peewee-async
31
+ """
32
+
15
33
setup (
16
34
name = "peewee-async" ,
17
35
version = __version__ ,
18
36
author = "Alexey Kinev" ,
19
37
20
38
url = 'https://github.com/05bit/peewee-async' ,
21
39
description = __doc__ ,
22
- # long_description=__doc__ ,
40
+ long_description = long_description ,
23
41
license = 'MIT' ,
24
42
zip_safe = False ,
25
43
install_requires = (
You can’t perform that action at this time.
0 commit comments