Mercurial > hg > toolbox
comparison setup.py @ 0:b0942f44413f
import from git://github.com/mozilla/toolbox.git
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 11 May 2014 09:15:35 -0700 |
parents | |
children | 11173b4a7ca8 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b0942f44413f |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 try: | |
4 description = file('README.txt').read() | |
5 except IOError: | |
6 description = '' | |
7 | |
8 version = "0.3" | |
9 | |
10 # dependencies | |
11 dependencies = [ | |
12 'WebOb', | |
13 'tempita', | |
14 'paste', | |
15 'pastescript', # technically optional, but here for ease of install | |
16 'whoosh >= 2.5', | |
17 'couchdb', | |
18 'docutils', | |
19 'pyloader', | |
20 'theslasher', | |
21 'pyes == 0.15', | |
22 ] | |
23 | |
24 setup(name='toolbox', | |
25 version=version, | |
26 description="a place to list Mozilla software tools", | |
27 long_description=description, | |
28 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
29 author='Jeff Hammel', | |
30 author_email='jhammel@mozilla.com', | |
31 url='https://github.com/mozilla/toolbox', | |
32 license="MPL", | |
33 packages=['toolbox'], | |
34 include_package_data=True, | |
35 zip_safe=False, | |
36 install_requires=dependencies, | |
37 entry_points=""" | |
38 # -*- Entry points: -*- | |
39 [console_scripts] | |
40 toolbox-convert-model = toolbox.model:convert | |
41 toolbox-serve = toolbox.factory:main | |
42 | |
43 [paste.app_factory] | |
44 toolbox = toolbox.factory:paste_factory | |
45 """, | |
46 ) | |
47 |