pkg: update the setup.py ot account for the new package name
2 files changed, 16 insertions(+), 11 deletions(-)

M setup.py
A => tox.ini
M setup.py +9 -11
@@ 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

          
A => tox.ini +7 -0
@@ 0,0 1,7 @@ 
+[tox]
+envlist = root
+
+[testenv]
+deps = pytest
+commands = pytest
+install_command = pip install {opts} {packages}