[pypy-svn] tkinter default: include tkinter.h

antocuni commits-noreply at bitbucket.org
Tue Apr 19 15:38:17 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r3:2c7ef9dafe0d
Date: 2011-04-19 15:37 +0200
http://bitbucket.org/pypy/tkinter/changeset/2c7ef9dafe0d/

Log:	include tkinter.h

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 from setuptools import setup, Extension
 
 setup(name="tkinter-pypy",
-      version="8.4",
+      version="0.1",
       description="Python interface to Tk GUI toolkit (for PyPy)",
       author="Python development team and PyPy development team",
       author_email="pypy-dev at codespeak.net",
@@ -15,5 +15,5 @@
                   library_dirs=["/usr/X11R6/lib"],
                   include_dirs=["/usr/include/tcl", "/usr/include/tk"],
                   libraries=["tk8.4", "tcl8.4", "X11"],
-                  )]
+                  )],
       )

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,1 @@
+include src/tkinter.h


More information about the Pypy-commit mailing list