File: setup.py

package info (click to toggle)
boost 1.33.1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 100,948 kB
  • ctags: 145,103
  • sloc: cpp: 573,492; xml: 49,055; python: 15,626; ansic: 13,588; sh: 2,099; yacc: 858; makefile: 660; perl: 427; lex: 111; csh: 6
file content (18 lines) | stat: -rw-r--r-- 710 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# contributed by Prabhu Ramachandran

from distutils.core import setup
import sys

setup (name              = "Pyste",
       version           = "0.9.10",
       description       = "Pyste - Python Semi-Automatic Exporter",
       maintainer        = "Bruno da Silva de Oliveira",
       maintainer_email  = "nicodemus@globalite.com.br",
       licence           = "Boost License",
       long_description  = "Pyste is a Boost.Python code generator",
       url               = "http://www.boost.org/libs/python/pyste/index.html",
       platforms         = ['Any'],
       packages          = ['Pyste'],
       scripts           = ['pyste.py'],
       package_dir       = {'Pyste': '../src/Pyste'},
       )