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