1
2 """A simple pastbin built on TurboGears and Pygments.
3
4 General Information
5 -------------------
6
7 SpammCan is yet another pastbin web application. It distinguishes itself from
8 its competitors by the following features:
9
10 * Has syntax highlighting support for over 100 languages thanks to the use of
11 Pygments_.
12
13 * Is easy to install thanks to setuptools_.
14
15 * Uses large, random GUIDs for paste entries in its URLs instead of sequential
16 paste numbers to discourage spammers.
17
18 Also detects and rejects spamming attempts with the help of a SpamBayes_
19 filter.
20
21 * Is built on TurboGears_ 1.1, Genshi_, and SQLAlchemy_.
22
23 * Uses a SQLite database by default, but can use any database system supported
24 by SQLAlchemy and TurboGears.
25
26
27 Getting the Code
28 ----------------
29
30 You can run your own SpammCan server! For more information, downloads, and
31 source code, visit the project home page at
32
33 http://chrisarndt.de/projects/spammcan
34
35 You can also install SpammCan via its Python Package Index (aka Cheeseshop_)
36 entry_::
37
38 $ [sudo] easy_install SpammCan
39
40 Finally, if you want the latest development code for SpammCan, you can check it
41 out from the Subversion repository::
42
43 $ svn co svn://chrisarndt.de/projects/SpammCan/trunk SpammCan
44
45 .. _cheeseshop: http://pypi.python.org/
46 .. _entry: http://pypi.python.org/pypi/SpammCan
47 .. _pygments: http://pygments.pocoo.org/
48 .. _turbogears: http://www.turbogears.org/
49 .. _setuptools: http://pypi.python.org/pypi/setuptools
50 .. _spambayes: http://spambayes.sourceforge.net/
51 .. _genshi: http://genshi.edgewall.org/
52 .. _sqlalchemy: http://sqlalchemy.org/
53
54 """
55
56 name = "SpammCan"
57 version = "0.2b"
58 date = "$Date: 2008-11-18 20:57:25 +0100 (Tue, 18 Nov 2008) $"
59
60 description = __doc__.split('\n')[0]
61 long_description = "\n".join(__doc__.split('\n')[2:])
62 author = "Christopher Arndt"
63 email = "chris@chrisarndt.de"
64 copyright = "Copyright © 2008 Christopher Arndt"
65
66
67 url = "http://chrisarndt.de/project/%s/" % name.lower()
68 download_url = "http://cheeseshop.python.org/pypi/%s" % name
69 license = "MIT, Zope Public License (rest.py)"
70