Changeset 381b1f0 in sasmodels for setup.py


Ignore:
Timestamp:
Apr 14, 2016 3:44:48 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Children:
78cbdb9
Parents:
53215cf
Message:

Ticket #539: Precompile model dlls and reuse them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    rf903f0a r381b1f0  
     1import os 
    12from setuptools import setup,find_packages 
     3 
     4# Create the model .so's 
     5os.system("python gen_so.py") 
    26 
    37packages = find_packages(exclude=['contrib', 'docs', 'tests*']) 
     
    59    'sasmodels.models': ['*.c','lib/*.c'], 
    610    'sasmodels': ['*.c'], 
     11    'sasmodels.models.dll': ['*.so'], 
    712} 
    813required = [] 
Note: See TracChangeset for help on using the changeset viewer.