File: setup.py

package info (click to toggle)
pycxx 5.4.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 660 kB
  • ctags: 1,292
  • sloc: cpp: 2,333; python: 205; makefile: 80; ansic: 22; sh: 9
file content (35 lines) | stat: -rwxr-xr-x 1,109 bytes parent folder | download
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
import os, sys
from glob import glob
from distutils.command.install import install
from distutils.core import setup

headers = glob (os.path.join ("CXX","*.hxx")) + \
          glob (os.path.join ("CXX","*.h"))
sources = glob (os.path.join ("Src", "*.cxx")) + \
          glob (os.path.join ("Src", "*.c"))


class my_install (install):

    def finalize_options (self):
	if not self.install_data or (len(self.install_data) < 8) :
	    self.install_data = "$base/share/python$py_version_short"
        install.finalize_options (self)

    def run (self):
	self.distribution.data_files = [("CXX", sources)]
	self.distribution.headers = headers
        install.run (self)


setup (name             = "CXX",
       version          = "5.3",
       maintainer       = "Barry Scott",
       maintainer_email = "barry-scott@users.sourceforge.net",
       description      = "Facility for extending Python with C++",
       url              = "http://cxx.sourceforge.net",
       
       cmdclass         = {'install': my_install},
       packages         = ['CXX'],
       package_dir      = {'CXX': 'Lib'}
      )