We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8c6437 commit b5e879aCopy full SHA for b5e879a
MANIFEST.in
@@ -0,0 +1,5 @@
1
+recursive-include docs *.py *.rst
2
+recursive-include examples *.py
3
+recursive-include tests *.py *.pem
4
+recursive-include asyncpg *.pyx *.pxd *.pxi *.py *.c *.h
5
+include LICENSE README.rst Makefile performance.png
Makefile
@@ -39,6 +39,14 @@ test:
39
USE_UVLOOP=1 $(PYTHON) -m unittest discover -s tests
40
41
42
+sdist: clean compile test
43
+ $(PYTHON) setup.py sdist
44
+
45
46
+release: clean compile test
47
+ $(PYTHON) setup.py sdist upload
48
49
50
# Script to patch Cython 'async def' coroutines to have a 'tp_iter' slot,
51
# which makes them compatible with 'yield from' without the
52
# `asyncio.coroutine` decorator.
0 commit comments