source: sasview/plottools/setup.py @ c6ccf852

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 c6ccf852 was 027c304, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

adding plottools

  • Property mode set to 100644
File size: 945 bytes
Line 
1"""
2     Installation script for DANSE plot tools
3"""
4import os
5# Then build and install the modules
6#from setuptools import setup, find_packages
7from distutils.core import setup
8
9setup(
10    name="plottools",
11    version = "1.0",
12    description = "Python plotting tools for wx",
13
14    # We are living in the danse.common namespace, but there may be
15    # other packages there, so declare ourselves to be a namespace package.
16    #namespace_packages = ['danse.common'],
17    package_dir = {"danse.common.plottools":os.path.join("src", "danse",
18                                                         "common",
19                                                         "plottools"),
20                   "danse":os.path.join("src", "danse"),
21                   "danse.common":os.path.join("src", "danse", "common")},
22    packages = ["danse.common.plottools",
23                "danse",
24                "danse.common"],
25    )
26
Note: See TracBrowser for help on using the repository browser.