1
2
3 """\
4 Front-to-back rapid web development
5 ===================================
6
7 TurboGears brings together four major pieces to create an easy to
8 install, easy to use web mega-framework. It covers everything from
9 front end (MochiKit JavaScript for the browser, Genshi / Kid / Mako /
10 Cheetah for templates in Python) to the controllers (CherryPy) to the
11 back end (SQLAlchemy or SQLObject).
12
13 The TurboGears project is focused on providing documentation and
14 integration with these tools without losing touch with the communities
15 that already exist around those tools.
16
17 TurboGears is easy to use for a wide range of web applications.
18
19 The latest development version is available in the `TurboGears
20 subversion repository`_.
21
22 Our `mailing list`_ is lively and helpful, don't hesitate to send your
23 questions there, we will try to help you find out a solution to your
24 problem.
25
26 .. _mailing list:
27 http://groups.google.com/group/turbogears
28
29 .. _TurboGears subversion repository:
30 http://svn.turbogears.org/trunk#egg=turbogears-dev
31 """
32
33 version = "1.5.2"
34 description = "Front-to-back, open-source, rapid web development framework"
35 long_description = __doc__
36 author = "Kevin Dangoor"
37 email = "dangoor+turbogears@gmail.com"
38 maintainer = "TurboGears Release Team"
39 maintainer_email = "turbogears@googlegroups.com"
40 url = "http://www.turbogears.org/"
41 download_url = "http://www.turbogears.org/%s/downloads/%s/index" % (
42 '.'.join(version.split('.', 2)[:2]), version)
43 dependency_links = [download_url]
44 copyright = "Copyright 2005 - 2011 Kevin Dangoor and contributors"
45 license = "MIT"
46