Changeset 2525 for trunk/setup.py


Ignore:
Timestamp:
05/16/12 09:23:15 (12 years ago)
Author:
Malte Marquarding
Message:

make extension into module to hide from setup.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/setup.py

    r2517 r2525  
    1 import glob
    2 try:
    3     from setuptools import setup
    4 except ImportError, ex:
    5     from distutils.core import setup
    6 from distutils.core import Extension
    7 from scons_ext import scons_ext
    8 from distutils import ccompiler
     1from setup_ext import setup
    92
    103PKGNAME = "asap"
    11 asapso = Extension(name="%s._%s" % (PKGNAME, PKGNAME), sources=[])
    124
    135setup(name = PKGNAME,
     
    2719      install_requires = ["ipython>=0.11", "matplotlib>=0.99", "numpy>=1.3"],
    2820#      setup_requires = [ "scons>=1.0" ],
    29       ext_modules =[ asapso ],
    30       cmdclass={'build_ext': scons_ext}
    31 
    3221      )
Note: See TracChangeset for help on using the changeset viewer.