blob: c06da125ff300a2e3b9f1e6bcde7f18fa494ea26 [file] [log] [blame]
#!/usr/bin/env python3
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://viewvc.org",
ext_modules=[Extension("tparse", ["tparsemodule.cpp"], libraries=["stdc++"])],
)