diff options
| author | Eevee (Alex Munroe) <eevee.git@veekun.com> | 2013-10-08 18:37:37 -0700 |
|---|---|---|
| committer | Eevee (Alex Munroe) <eevee.git@veekun.com> | 2013-10-08 18:37:37 -0700 |
| commit | 2b9f1b4cb59319fe91252cc34732f66903af73c3 (patch) | |
| tree | 720c24314a48c7fffd839d0a7d0d7c0d9b6f962b | |
| parent | 027de13fa20fd1ec0adccdaec610789f815ad3de (diff) | |
| download | pyscss-2b9f1b4cb59319fe91252cc34732f66903af73c3.tar.gz | |
Include speedups header files in an sdist.
| -rw-r--r-- | MANIFEST.in | 1 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index 0e7ad4d..5949e0c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include DESCRIPTION LICENSE README.rst +include scss/src/*.h @@ -22,6 +22,8 @@ speedups = Feature( 'optional C speed-enhancement module', standard=True, ext_modules=[ + # NOTE: header files are included by MANIFEST.in; Extension does not + # include headers in an sdist (since they're typically in /usr/lib) Extension( 'scss._speedups', sources=['scss/src/_speedups.c', 'scss/src/block_locator.c', 'scss/src/scanner.c'], |
