From de62d5d1c1831da68b29ea3c61b7ed78640c50a8 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 16 Sep 2014 20:54:03 -0400 Subject: clean up the setup.py a bit --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index e1641a0..09d31ba 100644 --- a/setup.py +++ b/setup.py @@ -13,11 +13,11 @@ def pkgconfig(*packages, **kw): setup( name="vt100", - version="0.0.1", + version="0.1.0", description="an in-memory terminal parsing library", author="Jesse Luehrs", author_email="doy@tozt.net", - url="https://github.com/doy/vt100/", + url="https://github.com/doy/libvt100-python/", packages=["vt100"], ext_modules=[ Extension( @@ -30,4 +30,9 @@ setup( **pkgconfig('glib-2.0') ) ], + classifiers=[ + "Development Status :: 3 - Alpha", + "License :: OSI Approved :: MIT License", + "Topic :: Terminals :: Terminal Emulators/X Terminals", + ], ) -- cgit v1.2.3-54-g00ecf