Index: trunk/setup.py
===================================================================
--- trunk/setup.py	(revision 3)
+++ trunk/setup.py	(revision 27)
@@ -1,2 +1,25 @@
+
+NAME = 'PySyck'
+VERSION = '0.55.1'
+DESCRIPTION = "Python bindings for the Syck YAML parser and emitter"
+LONG_DESCRIPTION = """\
+YAML is a data serialization format designed for human readability
+and interaction with scripting languages. Syck is an extension for
+reading and writing YAML in scripting languages. PySyck is aimed to
+update the current Python bindings for Syck."""
+AUTHOR = "Kirill Simonov"
+AUTHOR_EMAIL = 'xi@resolvent.net'
+LICENSE = "BSD"
+PLATFORMS = "Any"
+URL = "http://xitology.org/pysyck/"
+DOWNLOAD_URL = URL + "%s-%s.tar.gz" % (NAME, VERSION)
+CLASSIFIERS = [
+    "Development Status :: 3 - Alpha",
+    "Intended Audience :: Developers",
+    "License :: OSI Approved :: BSD License",
+    "Programming Language :: Python",
+    "Topic :: Software Development :: Libraries :: Python Modules",
+    "Topic :: Text Processing :: Markup",
+]
 
 from distutils.core import setup, Extension
@@ -12,6 +35,16 @@
 
 setup(
-    name='Syck',
-    version='0.55.1',
+    name=NAME,
+    version=VERSION,
+    description=DESCRIPTION,
+    long_description=LONG_DESCRIPTION,
+    author=AUTHOR,
+    author_email=AUTHOR_EMAIL,
+    license=LICENSE,
+    platforms=PLATFORMS,
+    url=URL,
+    download_url=DOWNLOAD_URL,
+    classifiers=CLASSIFIERS,
+
     package_dir={'': 'lib'},
     packages=['syck'],
@@ -23,18 +56,4 @@
         ),
     ],
-    description="Python bindings for the Syck YAML parser",
-    author="Kirill Simonov",
-    author_email="xi@resolvent.net",
-    license="BSD",
-    url="http://xitology.org/python-syck/",
-    download_url="http://xitology.org/*FIXME*",
-    classifiers=[
-        "Development Status :: 2 - Pre-Alpha",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved :: BSD License",
-        "Programming Language :: Python",
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        "Topic :: Text Processing :: Markup",
-    ],
 )
 
