Changeset 2488 for trunk


Ignore:
Timestamp:
05/08/12 13:21:49 (12 years ago)
Author:
Malte Marquarding
Message:

make package look like a platform specific one

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packaging/setup.py

    r2325 r2488  
    11from setuptools import setup
    22from setuptools import find_packages
     3import distutils.util
     4
     5# Use this dummy to make distutils aware that this is a platform-specific
     6# package.
     7from distutils.extension import Extension
     8ext = Extension('_dummy',[],[])
    39
    410setup(name = 'asap',
    5       version = '4.0.0-trunk',
     11      version = '4.1.0-trunk',
    612      description = 'ATNF Spectral-Line Analysis Package',
    713      author = 'Malte Marquarding',
     
    2026      license = 'GPL',
    2127      zip_safe = 0,
     28      ext_modules = [ ext ], # dummy (see above)
    2229      #test_suite = "nose.collector",
    2330)
Note: See TracChangeset for help on using the changeset viewer.