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