forked from TurboGears/gearbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (55 loc) · 2.25 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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
except IOError:
README = ''
version = "0.0.11"
setup(name='gearbox',
version=version,
description="Command line toolkit born as a PasteScript replacement for the TurboGears2 web framework",
long_description=README,
classifiers=['Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Framework :: TurboGears',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules'],
keywords='web framework command-line setup',
author='Alessandro Molina',
author_email='[email protected]',
url='https://github.com/TurboGears/gearbox',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"cliff >= 1.14.0",
"Tempita",
"PasteDeploy"
],
entry_points={
'console_scripts': [
'gearbox = gearbox.main:main'
],
'gearbox.commands': [
'makepackage = gearbox.commands.basic_package:MakePackageCommand',
'serve = gearbox.commands.serve:ServeCommand',
'setup-app = gearbox.commands.setup_app:SetupAppCommand',
'scaffold = gearbox.commands.scaffold:ScaffoldCommand',
'patch = gearbox.commands.patch:PatchCommand'
],
'paste.server_runner': [
'wsgiref = gearbox.commands.serve:wsgiref_server_runner',
'cherrypy = gearbox.commands.serve:cherrypy_server_runner',
],
'paste.server_factory': [
'gevent = gearbox.commands.serve:gevent_server_factory',
]
})