aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py9
1 files changed, 7 insertions, 2 deletions
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",
+ ],
)