"Fossies" - the Fresh Open Source Software Archive 
Member "Tahchee-1.0.0/setup.py" (17 Feb 2009, 2786 Bytes) of package /linux/privat/old/tahchee-1.0.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "setup.py" see the
Fossies "Dox" file reference documentation.
1 #!/usr/bin/python
2 # Encoding: ISO-8859-1
3 # vim: tw=80 ts=4 sw=4 fenc=latin-1 noet
4 # -----------------------------------------------------------------------------
5 # Project : Tahchee <http://www.ivy.fr/tahchee>
6 # -----------------------------------------------------------------------------
7 # Author : Sebastien Pierre <sebastien@ivy.fr>
8 # License : Revised BSD License
9 # -----------------------------------------------------------------------------
10 # Creation date : 20-Mar-2005
11 # Last mod. : 08-May-2007
12 # -----------------------------------------------------------------------------
13
14 import sys ; sys.path.insert(0, "Sources")
15 from tahchee import main
16 from distutils.core import setup
17
18 SUMMARY = "Automated static and dynamic web site creation tool"
19 DESCRIPTION = """\
20 Tahchee is a tool for developers and Web designers that makes it possible to
21 easily build a static Web site using the Cheetah template system. It is used to
22 fill in the gap between bare template and macro processing system and dynamic
23 template-based Web sites. It acts both as a build system (a la "make") as well
24 as an extension to the Cheetah template that makes it really easy to build small
25 to medium-sized sites. It is ideal for writing open source project or small
26 company Web sites.\
27 """
28 # ------------------------------------------------------------------------------
29 #
30 # SETUP DECLARATION
31 #
32 # ------------------------------------------------------------------------------
33
34 setup(
35 name = "Tahchee",
36 version = main.__version__,
37 author = "Sebastien Pierre", author_email = "sebastien@type-z.org",
38 description = SUMMARY, long_description = DESCRIPTION,
39 license = "Revised BSD License",
40 keywords = "web, Cheetah, automated, static, dynamic, build",
41 url = "http://www.ivy.fr/tahchee",
42 download_url= "http://www.ivy.fr/tahchee/tahchee-%s.tar.gz" % (main.__version__) ,
43 package_dir = { "": "Sources" },
44 package_data= { "tahchee.plugins._kiwi": ["*.css"] },
45 packages = ["tahchee", "tahchee.plugins", "tahchee.plugins._kiwi"],
46 scripts = ["Scripts/tahchee"],
47 classifiers = [
48 "Development Status :: 4 - Beta",
49 "Environment :: Web Environment",
50 "Intended Audience :: Developers",
51 "Intended Audience :: Information Technology",
52 "License :: OSI Approved :: BSD License",
53 "Natural Language :: English",
54 "Topic :: Internet :: WWW/HTTP :: Site Management",
55 "Topic :: Software Development :: Build Tools",
56 "Topic :: Text Processing :: Markup",
57 "Operating System :: POSIX",
58 "Operating System :: Microsoft :: Windows",
59 "Programming Language :: Python",
60 ]
61 )
62
63 # EOF