ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change
on this file since 41517a6 was
4f82183,
checked in by Gervaise Alina <gervyh@…>, 13 years ago
|
edit configuration file for sphinx
edit setup.py to properly add data_package
remove unused import
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | |
---|
2 | """ |
---|
3 | Installs the guiframe package |
---|
4 | """ |
---|
5 | |
---|
6 | from distutils.core import setup |
---|
7 | import os |
---|
8 | |
---|
9 | path = os.path.join(os.getcwd(), "sans", "guiframe",'local_perspectives') |
---|
10 | package_dir = {"sans.guiframe":os.path.join("sans", "guiframe"), |
---|
11 | "sans.guiframe.local_perspectives":os.path.join("sans", |
---|
12 | "guiframe", |
---|
13 | "local_perspectives"),} |
---|
14 | |
---|
15 | package_data = {"sans.guiframe": ['images/*', 'media/*']} |
---|
16 | packages = ["sans.guiframe", |
---|
17 | "sans.guiframe.local_perspectives"] |
---|
18 | # build local plugin |
---|
19 | for dir in os.listdir(path): |
---|
20 | if dir not in ['.svn','__init__.py', '__init__.pyc']: |
---|
21 | package_name = "sans.guiframe.local_perspectives." + dir |
---|
22 | packages.append(package_name) |
---|
23 | package_dir[package_name] = os.path.join("sans", |
---|
24 | "guiframe", |
---|
25 | "local_perspectives" , dir) |
---|
26 | |
---|
27 | |
---|
28 | setup( |
---|
29 | name="sans.guiframe", |
---|
30 | version = "0.9.1", |
---|
31 | description = "Python module for SANS gui framework", |
---|
32 | author = "University of Tennessee", |
---|
33 | url = "http://danse.chem.utk.edu", |
---|
34 | package_dir = package_dir, |
---|
35 | packages = packages, |
---|
36 | package_data = package_data, |
---|
37 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.