Revision: 226
Author: roman_yakovenko
Date: 2006-06-18 06:33:21 -0700 (Sun, 18 Jun 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=226&view=rev
Log Message:
-----------
adding windows setup for pyboost
Modified Paths:
--------------
pyplusplus_dev/examples/pyboost_dev/setup.py
Modified: pyplusplus_dev/examples/pyboost_dev/setup.py
===================================================================
--- pyplusplus_dev/examples/pyboost_dev/setup.py 2006-06-18 06:44:26 UTC (rev 225)
+++ pyplusplus_dev/examples/pyboost_dev/setup.py 2006-06-18 13:33:21 UTC (rev 226)
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+# Copyright 2004 Roman Yakovenko.
+# Distributed under the Boost Software License, Version 1.0. (See
+# accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
+import sys, os, os.path
+from distutils import sysconfig
+from distutils.core import setup
+
+__version__ = "0.2"
+
+setup(
+ name = "pyboost"
+ , version = __version__
+ , description = ""
+ , author = "Roman Yakovenko"
+ , author_email = "rom...@gm..."
+ , url = 'http://www.language-binding.net/pygccxml/pygccxml.html'
+ , packages = [ 'pyboost'
+ , 'pyboost.boost_random'
+ , 'pyboost.crc'
+ , 'pyboost.date_time'
+ , 'pyboost.rational' ]
+ , package_data = {
+ 'pyboost.boost_random' : [ '_random_.dll', 'boost_python.dll' ]
+ , 'pyboost.crc' : [ '_crc_.dll', 'boost_python.dll' ]
+ , 'pyboost.date_time' : [ '_date_time_.dll'
+ , 'boost_python.dll'
+ , 'boost_date_time-vc71-mt-1_34.dll'
+ , 'date_time_zonespec.csv' ]
+ , 'pyboost.rational' : [ '_rational_.dll', 'boost_python.dll' ]
+ }
+)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|