changeset 3:11173b4a7ca8

avoid namespace collision
author Jeff Hammel <k0scist@gmail.com>
date Mon, 19 Dec 2016 12:28:19 -0800
parents 458f2c48ecce
children 1b2f9d3948d7
files setup.py
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Tue May 19 20:08:52 2015 -0700
+++ b/setup.py	Mon Dec 19 12:28:19 2016 -0800
@@ -1,11 +1,11 @@
-from setuptools import setup, find_packages
+from setuptools import setup
 
 try:
     description = file('README.txt').read()
 except IOError:
     description = ''
 
-version = "0.3"
+version = "0.4"
 
 # dependencies
 dependencies = [
@@ -21,14 +21,14 @@
     'pyes == 0.15',
     ]
 
-setup(name='toolbox',
+setup(name='toolk0s',
       version=version,
-      description="a place to list Mozilla software tools",
+      description="a place to list links + tools",
       long_description=description,
       classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       author='Jeff Hammel',
       author_email='jhammel@mozilla.com',
-      url='https://github.com/mozilla/toolbox',
+      url='http://k0s.org/hg/toolbox/',
       license="MPL",
       packages=['toolbox'],
       include_package_data=True,
@@ -44,4 +44,3 @@
       toolbox = toolbox.factory:paste_factory
       """,
       )
-