File: setup.py

package info (click to toggle)
mgltools-pmv 1.5.6~rc3~cvs.20120206-1
  • links: PTS, VCS
  • area: non-free
  • in suites: wheezy
  • size: 40,960 kB
  • sloc: python: 104,681; sh: 266; makefile: 30; ansic: 18
file content (146 lines) | stat: -rw-r--r-- 5,924 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/python

from distutils.core import setup
from distutils.command.sdist import sdist
from distutils.command.install_data import install_data
from distutils.command.build_scripts import build_scripts
from glob import glob
import os

########################################################################
# Had to overwrite the prunefile_list method of sdist to not
# remove automatically the RCS/CVS directory from the distribution.
########################################################################

class modified_sdist(sdist):
    def prune_file_list(self):
        """
        Prune off branches that might slip into the file list as created
        by 'read_template()', but really don't belong there:
          * the build tree (typically 'build')
          * the release tree itself (only an issue if we ran 'sdist
            previously with --keep-temp, or it aborted)
        """
        build = self.get_finalized_command('build')
        base_dir = self.distribution.get_fullname()
        self.filelist.exclude_pattern(None, prefix=build.build_base)
        self.filelist.exclude_pattern(None, prefix=base_dir)

class modified_install_data(install_data):

    def run(self):
        install_cmd = self.get_finalized_command('install')
        self.install_dir = getattr(install_cmd, 'install_lib')
        return install_data.run(self)
    
class modified_build_scripts(build_scripts):
    
    def copy_scripts(self):
        #print "scripts:" , self.scripts
        ## copy runPmv.py to runPmv, inserting "#!python" line at the beginning 
        for script in self.scripts:
            fnew = open(script, "w")
            forig = open(script+".py", "r")
            txt = forig.readlines()
            forig.close()
            fnew.write("#!/usr/bin/python\n")
            fnew.writelines(txt)
            fnew.close()
        build_scripts.copy_scripts(self)

        
########################################################################
# list of the python packages to be included in this distribution.
# sdist doesn't go recursively into subpackages so they need to be
# explicitaly listed.
# From these packages only the python modules will be taken
packages = ['Pmv', 'Pmv/Tests','Pmv/VisionInterface',
            'Pmv/Icons', 'Pmv/Tests/Data', 'Pmv/doc',
            'Pmv/VisionInterface/Tests',
            'Pmv/VisionInterface/Tests/Data',
            'Pmv/Tests/Data/clouds',
            'Pmv/scenarioInterface',
            'Pmv/scenarioInterface/Tests',
            'Pmv/hostappInterface',
            'Pmv/hostappInterface/Chimera',
            'Pmv/hostappInterface/Template',
            'Pmv/hostappInterface/cinema4d_dev',
            'Pmv/hostappInterface/cinema4d_dev/plugin',
            'Pmv/hostappInterface/blender',
            'Pmv/hostappInterface/blender/plugin',
            'Pmv/hostappInterface/blender/test',
            'Pmv/hostappInterface/demo',
            'Pmv/hostappInterface/cinema4d',
            'Pmv/hostappInterface/cinema4d/plugin',
            'Pmv/hostappInterface/cinema4d/test',
            'Pmv/hostappInterface/autodeskmaya',
            'Pmv/hostappInterface/autodeskmaya/plugin',
            'Pmv/hostappInterface/extension',
            'Pmv/hostappInterface/extension/testAF',
            'Pmv/hostappInterface/extension/Modeller',
            'Pmv/hostappInterface/houdini',
            'Pmv/styles']

# list of the python modules which are not part of a package
py_modules = ['Pmv/bin/runPmv',
              'Pmv/Macros/changeFontMac',
              'Pmv/Macros/contourMac',
              'Pmv/Macros/DejaVuMac',
              'Pmv/Macros/distanceMac',
              'Pmv/Macros/editMac',
              'Pmv/Macros/exposureMac',
              'Pmv/Macros/msmsMac',
              'Pmv/Tests/Data/littleScript',
              'Pmv/Tests/Data/withLog',
              'Pmv/Tests/Data/rw256_map',
              ]

# list of the files that are not python packages but are included in the
# distribution and need to be installed at the proper place  by distutils.
# The list in MANIFEST.in lists is needed for including those files in
# the distribution, data_files in setup.py is needed to install them
# at the right place.
data_files = []
## for dir in ['Pmv','Pmv/data','Pmv/bin', 'Pmv/bin/CVS',
##             'Pmv/data/CVS','Pmv/CVS', 'Pmv/Tests/CVS',
##             'Pmv/VisionInterface/CVS','Pmv/Icons','Pmv/Icons/CVS',
##             'Pmv/Macros/CVS','Pmv/Tests/Data', 'Pmv/Tests/Data/CVS']:
##     files = []
##     for f in glob(os.path.join(dir, '*')):
##         if f[-3:] != '.py' and f[-4:-1] != '.py' and os.path.isfile(f):
##             files.append(f)
##     data_files.append((dir, files))

def getDataFiles(file_list, directory, names):
    fs = []
    for name in names:
        ext = os.path.splitext(name)[1]
        #print directory, name, ext, len(ext)
        if ext !=".py" and ext !=".pyc":
            fullname = os.path.join(directory,name)
            if not os.path.isdir(fullname):
                fs.append(fullname)
    if len(fs):
        file_list.append((directory, fs))

os.path.walk("Pmv", getDataFiles, data_files)

# description of what is going to be included in the distribution and
# installed.
from version import VERSION
setup (name = 'Pmv',
       version = VERSION,
       description = "Python-based Molecular Viewer",
       author = 'Molecular Graphics Laboratory',
       author_email = 'sanner@scripps.edu',
       download_url = 'http://www.scripps.edu/~sanner/software/packager.html',
       url = 'http://www.scripps.edu/~sanner/software/pmv/webpmv.html',
       packages = packages,
       py_modules = py_modules,
       data_files = data_files,
       scripts = ['Pmv/bin/runPmv'],
       cmdclass = {'sdist': modified_sdist,
                   'install_data': modified_install_data,
                   'build_scripts': modified_build_scripts
                   },
       )