@@ 1,19 1,19 @@
#! /usr/bin/env python
-from distutils.core import setup
+from setuptools import setup
-from html import __version__, __doc__
+from pyhtml import __doc__
# perform the setup action
setup(
- name = "html",
- version = __version__,
- description = "simple, elegant HTML, XHTML and XML generation",
+ name = 'pyhtml',
+ version = '1.17',
+ description = 'simple, elegant HTML, XHTML and XML generation',
long_description = __doc__,
- author = "Richard Jones",
- author_email = "rjones@ekit-inc.com",
- py_modules = ['html'],
- url = 'http://pypi.python.org/pypi/html',
+ author = 'Richard Jones',
+ author_email = 'rjones@ekit-inc.com',
+ py_modules = ['pyhtml'],
+ url = 'http://pypi.python.org/pypi/pyhtml',
classifiers = [
'Environment :: Web Environment',
'Intended Audience :: Developers',
@@ 26,5 26,3 @@ setup(
'License :: OSI Approved :: BSD License',
],
)
-
-# vim: set filetype=python ts=4 sw=4 et si