| 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="flow", | |
| 13 # metadata | |
| 14 name="Twisted Flow", | |
| 15 description="A Twisted concurrency programming library.", | |
| 16 author="Twisted Matrix Laboratories", | |
| 17 author_email="twisted-python@twistedmatrix.com", | |
| 18 maintainer="Clark Evans", | |
| 19 maintainer_email="cce@twistedmatrix.com", | |
| 20 url="http://twistedmatrix.com/trac/wiki/TwistedFlow", | |
| 21 license="MIT", | |
| 22 long_description="""\ | |
| 23 Twisted Flow aims to make asynchronous programming a easier, | |
| 24 using python generators. | |
| 25 """, | |
| 26 ) | |
| OLD | NEW |