From 5e3f8cc958bf129c62cdf96f4015864750399486 Mon Sep 17 00:00:00 2001 From: tcocagne Date: Mon, 2 Jul 2012 15:58:38 -0500 Subject: [PATCH] Updated to point to documentation hosted on pypi --- README.asciidoc | 8 ++++---- setup.py | 10 ++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.asciidoc b/README.asciidoc index 98c20c7..438c45b 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -9,10 +9,10 @@ Twisted DBus is a native Python implementation of the http://dbus.freedesktop.org/doc/dbus-specification.html[DBus protocol] for the http://twistedmatrix.com/trac/[Twisted] networking framework. -In addition to a link:doc/tutorial.asciidoc[Tutorial], and collection -of link:doc/tutorial_examples[Examples], the -documentation for this project also inclues -link:doc/dbus_overview.asciidoc[An Overview of the DBus Protocol] +In addition to a http://packages.python.org/twisted_dbus/[Tutorial], and collection +of https://github.com/cocagne/twisted_dbus/tree/master/doc/tutorial_examples[Examples], +the documentation for this project also includes +http://packages.python.org/twisted_dbus/dbus_overview.html[An Overview of the DBus Protocol] *License*: http://www.opensource.org/licenses/mit-license.php[MIT] diff --git a/setup.py b/setup.py index de959fe..4f1cc22 100755 --- a/setup.py +++ b/setup.py @@ -25,5 +25,15 @@ packages = ['tx', 'tx.dbus', 'tx.dbus.test'], + keywords = ['dbus', 'twisted'], + classifiers = ['Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Development Status :: 4 - Beta', + 'Environment :: Other Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], )