Author: Ronan Lamy <[email protected]>
Branch: install-rpython
Changeset: r76654:cf6c8c6a12d4
Date: 2015-03-31 02:19 +0100
http://bitbucket.org/pypy/pypy/changeset/cf6c8c6a12d4/

Log:    try again, including C files this time

diff --git a/MANIFEST.in b/MANIFEST.in
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,6 @@
 include README-rpython.rst
 exclude README.rst
+recursive-include rpython/translator/c/src *.c *.h
 prune _pytest
 prune ctypes_configure
 prune include
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@
 
 setup(
     name='rpython',
-    version='0.1.1',
+    version='0.1.2',
     description='RPython',
     long_description=long_description,
 
@@ -41,5 +41,6 @@
     keywords='development',
 
     packages=find_packages(),  # MANIFEST.in filters out all the pypy stuff
+    package_data={'rpython': ['translator/c/src/*.c', 'translator/c/src/*.h']},
     install_requires=['pytest'],
 )
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to