File: setup.py

package info (click to toggle)
pycxx 5.3.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 460 kB
  • ctags: 1,131
  • sloc: cpp: 2,148; makefile: 82; python: 68; sh: 9; ansic: 8
file content (34 lines) | stat: -rw-r--r-- 1,061 bytes parent folder | download | duplicates (4)
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
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"))
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'}
      )