-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
executable file
·52 lines (48 loc) · 1.34 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
test_requirements = [
'kajiki',
'genshi',
'jinja2',
'mako',
'WebTest',
]
install_requirements = [
'TurboGears2 >= 2.4.3',
'gearbox >= 0.1.1',
'backlash >= 0.0.7',
'tgext.debugbar',
]
setup(
name='tg.devtools',
version="2.4.3",
description="",
long_description="""""",
classifiers=[],
keywords='turbogears',
author="TurboGears Team 2008-2019",
author_email="[email protected]",
url="http://www.turbogears.org",
license="MIT",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires = install_requirements,
entry_points={
'gearbox.commands': [
'quickstart = devtools.gearbox.quickstart:QuickstartCommand',
'tgext = devtools.gearbox.tgext:MakeTGExtCommand',
],
'gearbox.project_commands': [
'sqla-migrate = devtools.gearbox.sqlamigrate:MigrateCommand',
'migrate = devtools.gearbox.alembic_migrate:MigrateCommand',
'tgshell = devtools.gearbox.tgshell:ShellCommand',
],
},
test_suite='nose.collector',
tests_require = test_requirements,
extras_require={
'testing': test_requirements,
},
)