Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/python/pyste/install/setup.py @ 14

Last change on this file since 14 was 12, checked in by landauf, 18 years ago

added boost

File size: 710 bytes
Line 
1# contributed by Prabhu Ramachandran
2
3from distutils.core import setup
4import sys
5
6setup (name              = "Pyste",
7       version           = "0.9.10",
8       description       = "Pyste - Python Semi-Automatic Exporter",
9       maintainer        = "Bruno da Silva de Oliveira",
10       maintainer_email  = "nicodemus@globalite.com.br",
11       licence           = "Boost License",
12       long_description  = "Pyste is a Boost.Python code generator",
13       url               = "http://www.boost.org/libs/python/pyste/index.html",
14       platforms         = ['Any'],
15       packages          = ['Pyste'],
16       scripts           = ['pyste.py'],
17       package_dir       = {'Pyste': '../src/Pyste'},
18       )
Note: See TracBrowser for help on using the repository browser.