Changeset 5d91e9c in sasview for Invariant/setup.py
- Timestamp:
- Nov 24, 2009 12:58:42 PM (15 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- b6666d4
- Parents:
- 75047cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Invariant/setup.py
r75047cf r5d91e9c 2 2 Setup for invariant 3 3 """ 4 5 import sys6 if len(sys.argv) == 1:7 sys.argv.append('install')8 # Then build and install the modules9 4 from distutils.core import setup 10 5 11 6 setup( 12 name="sans. Invariant",7 name="sans.invariant", 13 8 version = "0.1", 14 description = "Python module for fitting",9 description = "Python module for invariant calculation", 15 10 author = "University of Tennessee", 16 #author_email = "",17 11 url = "http://danse.chem.utk.edu", 18 12 19 13 # Use the pure python modules 20 package_dir = {"sans. Invariant":"."},14 package_dir = {"sans.invariant":"."}, 21 15 22 packages = ["sans. Invariant"]16 packages = ["sans.invariant"] 23 17 ) 24 18
Note: See TracChangeset
for help on using the changeset viewer.