File: Setup.py

package info (click to toggle)
viewcvs 0.9.2%2Bcvs.1.0.dev.2004.07.28-1.5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,436 kB
  • ctags: 1,355
  • sloc: python: 10,094; cpp: 840; ansic: 763; yacc: 526; sh: 168; makefile: 114
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++"])]
     )