misc updates
authorRobert Bradshaw <robertwb@math.washington.edu>
Sat, 29 Dec 2007 18:21:24 +0000 (10:21 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sat, 29 Dec 2007 18:21:24 +0000 (10:21 -0800)
Demos/Setup.py
Demos/primes.pyx
Demos/spam.pyx
MANIFEST.in
setup.py

index b0d2cb6ce6500f1ed5ef5023a7207500b719da79..4124147c217a0d3bacdaa78e15e09c845c394e7b 100644 (file)
@@ -8,7 +8,20 @@ setup(
     Extension("primes",       ["primes.pyx"]),
     Extension("spam",         ["spam.pyx"]),
 #    Extension("numeric_demo", ["numeric_demo.pyx"]),
-    Extension("test", ["test.pyx"]),
+#    Extension("test", ["test.pyx"]),
+    Extension("func_pointers", ["func_pointers.pyx"]),
+#    Extension("inplace", ["inplace.pyx"]),
+#    Extension("withGIL", ["withGIL.pyx"]),
+    Extension("class_members", ["class_members.pyx"]),
+#    Extension("inherit_bug", ["inherit_bug.pyx"]),
+    Extension("override", ["override.pyx"]),
+    Extension("cond", ["cond.pyx"]),
+    Extension("submodule.test",       ["submodule/test.pyx"]),
+    Extension("errors",       ["errors.pyx"]),
+    Extension("cpdef",       ["cpdef.pyx"]),
+    Extension("range",       ["range.pyx"]),
+    Extension("ints",       ["ints.pyx"]),
+    Extension("detect_override",       ["detect_override.pyx"]),
     ],
   cmdclass = {'build_ext': build_ext},
 #  include_dirs = "/System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/"
index dfbaae48d4cadf0950d3d52b42de7439784a7961..923964e3638a50956c0832c3394b728508b0add4 100644 (file)
@@ -1,3 +1,5 @@
+print "starting"
+
 def primes(int kmax):
     cdef int n, k, i
     cdef int p[1000]
index d70eccfa08aacd6a684156bb9caf7c8b63ffba54..f954f078af1695d512be0970e4ca11abd9746fce 100644 (file)
@@ -4,8 +4,6 @@
 
 cdef class Spam:
 
-  cdef int amount
-
   def __new__(self):
     self.amount = 0
 
index 4c8e405ddc01b36985cfdea44d6199ffd611fbe8..f36c8fe3e3192424110faf9bb77d3ef26a111635 100644 (file)
@@ -6,4 +6,6 @@ include bin/cython
 include cython.py
 include Cython/Compiler/Lexicon.pickle
 include Doc/*
-include Demos/*
+include Demos/*.p*
+include Demos/Makefile*
+include Cython/Compiler/Builtin.py
index f58045aba230e7c15cf8109facf71ecdf4cf3aea..edf73920c478019bb16bafc2a65c48c88f3b7a43 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -52,6 +52,7 @@ setup(
     "License :: OSI Approved :: Python Software Foundation License",
     "Operating System :: OS Independent",
     "Programming Language :: Python",
+    "Programming Language :: C",
     "Topic :: Software Development :: Code Generators",
     "Topic :: Software Development :: Compilers",
     "Topic :: Software Development :: Libraries :: Python Modules"