Initial import to Tizen
[profile/ivi/python-twisted.git] / twisted / pair / topfiles / setup.py
1 # Copyright (c) Twisted Matrix Laboratories.
2 # See LICENSE for details.
3
4 import sys
5
6 try:
7     from twisted.python import dist
8 except ImportError:
9     raise SystemExit("twisted.python.dist module not found.  Make sure you "
10                      "have installed the Twisted core package before "
11                      "attempting to install any other Twisted projects.")
12
13 if __name__ == '__main__':
14     dist.setup(
15         twisted_subproject="pair",
16         # metadata
17         name="Twisted Pair",
18         description="Twisted Pair contains low-level networking support.",
19         author="Twisted Matrix Laboratories",
20         author_email="twisted-python@twistedmatrix.com",
21         maintainer="Tommi Virtanen",
22         url="http://twistedmatrix.com/trac/wiki/TwistedPair",
23         license="MIT",
24         long_description="""
25 Raw network packet parsing routines, including ethernet, IP and UDP
26 packets, and tuntap support.
27 """,
28         )