File: Setup.py

package info (click to toggle)
viewcvs 0.9.2%2Bcvs.1.0.dev.2004.07.28-4.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 1,452 kB
  • ctags: 1,355
  • sloc: python: 10,100; cpp: 840; ansic: 763; yacc: 526; sh: 163; makefile: 115
file content (12 lines) | stat: -rwxr-xr-x 376 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python

from distutils.core import setup,Extension

setup(name="tparse",
      version="1.0",
      description="A quick RCS file format parser",
      author="Lucas Bruand",
      author_email="lbruand@users.sourceforge.net",
      url="http://viewcvs.sourceforge.net",
      ext_modules=[Extension("tparse", ["tparsemodule.cpp"],libraries=["stdc++"])]
     )