-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (41 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
try:
description = file('README.txt').read()
except IOError:
description = ''
version = "0.3"
# dependencies
dependencies = [
'WebOb',
'tempita',
'paste',
'pastescript', # technically optional, but here for ease of install
'whoosh >= 2.5',
'couchdb',
'docutils',
'pyloader',
'theslasher',
'pyes == 0.15',
]
setup(name='toolbox',
version=version,
description="a place to list Mozilla software tools",
long_description=description,
classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
author='Jeff Hammel',
author_email='[email protected]',
url='https://github.com/mozilla/toolbox',
license="MPL",
packages=['toolbox'],
include_package_data=True,
zip_safe=False,
install_requires=dependencies,
entry_points="""
# -*- Entry points: -*-
[console_scripts]
toolbox-convert-model = toolbox.model:convert
toolbox-serve = toolbox.factory:main
[paste.app_factory]
toolbox = toolbox.factory:paste_factory
""",
)