Enhance setup.py (and add licence)

This commit is contained in:
Julien Palard 2016-03-03 09:52:22 +01:00
parent a6d5471c0d
commit 8c884069e3

View File

@ -11,8 +11,7 @@ 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'],
)
'src/lw_terminal_vt100.c'])
setup(name='hl_vt100',
version='0.1',
@ -20,4 +19,12 @@ setup (name = 'hl_vt100',
description="""Headless vt100 emulator""",
ext_modules=[hl_vt100_module],
py_modules=["hl_vt100"],
)
classifiers=[
"Programming Language :: C",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: System :: Emulators",
"Topic :: Terminals :: Terminal Emulators/X Terminals"
])