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