Skip to content

Commit b5e879a

Browse files
committed
Add MANIFEST and build targets
1 parent a8c6437 commit b5e879a

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ test:
3939
USE_UVLOOP=1 $(PYTHON) -m unittest discover -s tests
4040

4141

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+
4250
# Script to patch Cython 'async def' coroutines to have a 'tp_iter' slot,
4351
# which makes them compatible with 'yield from' without the
4452
# `asyncio.coroutine` decorator.

0 commit comments

Comments
 (0)