Changeset e1454ab in sasmodels for setup.py


Ignore:
Timestamp:
Apr 25, 2016 7:46:46 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
3a45c2c
Parents:
81cd2a2
git-author:
Piotr Rozyczko <piotr.rozyczko@…> (04/14/16 03:44:48)
git-committer:
Piotr Rozyczko <piotr.rozyczko@…> (04/25/16 07:46:46)
Message:

Ticket #539: Precompile model dlls and reuse them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    rf903f0a re1454ab  
     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.