Skip to content
This repository was archived by the owner on Dec 10, 2018. It is now read-only.

Commit d24912d

Browse files
committed
fix packageing, add new cython files
1 parent 57f57b9 commit d24912d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include README.rst CHANGES.rst
22
include thriftpy/protocol/cybin/*.pyx thriftpy/protocol/cybin/*.c thriftpy/protocol/cybin/*.h
3+
include thriftpy/transport/*/*.pyx thriftpy/transport/*/*.c
34
include thriftpy/transport/*.pyx thriftpy/transport/*.pxd thriftpy/transport/*.c

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
build_ext:
22
rm -vf thriftpy/protocol/cybin/*.c thriftpy/protocol/*.so
33
rm -vf thriftpy/transport/*.c thriftpy/transport/*.so
4+
rm -vf thriftpy/transport/*/*.c thriftpy/transport/*/*.so
45
rm -vf dist/*
56
python setup.py build_ext
67

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
# only build ext in CPython
4747
if not PYPY:
4848
if CYTHON:
49+
cythonize("thriftpy/transport/cybase.pyx")
4950
cythonize("thriftpy/transport/**/*.pyx")
5051
cythonize("thriftpy/protocol/cybin/cybin.pyx")
5152

0 commit comments

Comments
 (0)