~jbaker/storm/nose_plugin

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Gustavo Niemeyer
  • Date: 2007-10-08 22:02:21 UTC
  • Revision ID: gustavo@niemeyer.net-20071008220221-cga88199di9iwln6
Tags: 0.11
Added MANIFEST.in and setup.cfg files, and also changed setup.py to
remove the automatically generated MANIFEST file when run.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
 
 
3
2
import os
4
3
 
5
4
try:
8
7
    from distutils.core import setup, Extension
9
8
 
10
9
 
 
10
if os.path.isfile("MANIFEST"):
 
11
    os.unlink("MANIFEST")
 
12
 
 
13
 
11
14
BUILD_CEXTENSIONS = False
12
15
 
13
16