Initial import to Tizen
[profile/ivi/python-twisted.git] / twisted / news / topfiles / setup.py
1 # Copyright (c) Twisted Matrix Laboratories.
2 # See LICENSE for details.
3
4 try:
5     from twisted.python import dist
6 except ImportError:
7     raise SystemExit("twisted.python.dist module not found.  Make sure you "
8                      "have installed the Twisted core package before "
9                      "attempting to install any other Twisted projects.")
10
11 if __name__ == '__main__':
12     dist.setup(
13         twisted_subproject="news",
14         # metadata
15         name="Twisted News",
16         description="Twisted News is an NNTP server and programming library.",
17         author="Twisted Matrix Laboratories",
18         author_email="twisted-python@twistedmatrix.com",
19         maintainer="Jp Calderone",
20         url="http://twistedmatrix.com/trac/wiki/TwistedNews",
21         license="MIT",
22         long_description="""\
23 Twisted News is an NNTP protocol (Usenet) programming library. The
24 library contains server and client protocol implementations. A simple
25 NNTP server is also provided.
26 """,
27     )
28