Mercurial > hg > toolbox
comparison setup.py @ 3:11173b4a7ca8
avoid namespace collision
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 19 Dec 2016 12:28:19 -0800 |
parents | b0942f44413f |
children | 1b2f9d3948d7 |
comparison
equal
deleted
inserted
replaced
2:458f2c48ecce | 3:11173b4a7ca8 |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup |
2 | 2 |
3 try: | 3 try: |
4 description = file('README.txt').read() | 4 description = file('README.txt').read() |
5 except IOError: | 5 except IOError: |
6 description = '' | 6 description = '' |
7 | 7 |
8 version = "0.3" | 8 version = "0.4" |
9 | 9 |
10 # dependencies | 10 # dependencies |
11 dependencies = [ | 11 dependencies = [ |
12 'WebOb', | 12 'WebOb', |
13 'tempita', | 13 'tempita', |
19 'pyloader', | 19 'pyloader', |
20 'theslasher', | 20 'theslasher', |
21 'pyes == 0.15', | 21 'pyes == 0.15', |
22 ] | 22 ] |
23 | 23 |
24 setup(name='toolbox', | 24 setup(name='toolk0s', |
25 version=version, | 25 version=version, |
26 description="a place to list Mozilla software tools", | 26 description="a place to list links + tools", |
27 long_description=description, | 27 long_description=description, |
28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
29 author='Jeff Hammel', | 29 author='Jeff Hammel', |
30 author_email='jhammel@mozilla.com', | 30 author_email='jhammel@mozilla.com', |
31 url='https://github.com/mozilla/toolbox', | 31 url='http://k0s.org/hg/toolbox/', |
32 license="MPL", | 32 license="MPL", |
33 packages=['toolbox'], | 33 packages=['toolbox'], |
34 include_package_data=True, | 34 include_package_data=True, |
35 zip_safe=False, | 35 zip_safe=False, |
36 install_requires=dependencies, | 36 install_requires=dependencies, |
42 | 42 |
43 [paste.app_factory] | 43 [paste.app_factory] |
44 toolbox = toolbox.factory:paste_factory | 44 toolbox = toolbox.factory:paste_factory |
45 """, | 45 """, |
46 ) | 46 ) |
47 |