hl-vt100/setup.py

24 lines
636 B
Python
Raw Normal View History

2011-10-22 14:45:31 +00:00
#!/usr/bin/env python
"""
setup.py file for hl_vt100
"""
from distutils.core import setup, Extension
hl_vt100_module = Extension('_hl_vt100',
sources=['hl_vt100_wrap.c',
'src/hl_vt100.c',
'src/lw_terminal_parser.c',
'src/lw_terminal_vt100.c'],
)
setup (name = 'hl_vt100',
version = '0.1',
author = "Julien Palard",
description = """Headless vt100 emulator""",
ext_modules = [hl_vt100_module],
py_modules = ["hl_vt100"],
)