| 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="lore", | |
| 13 scripts=dist.getScripts("lore"), | |
| 14 # metadata | |
| 15 name="Twisted Lore", | |
| 16 description="Twisted documentation system", | |
| 17 author="Twisted Matrix Laboratories", | |
| 18 author_email="twisted-python@twistedmatrix.com", | |
| 19 maintainer="Andrew Bennetts", | |
| 20 maintainer_email="spiv@twistedmatrix.com", | |
| 21 url="http://twistedmatrix.com/trac/wiki/TwistedLore", | |
| 22 license="MIT", | |
| 23 long_description="""\ | |
| 24 Twisted Lore is a documentation generator with HTML and LaTeX support, | |
| 25 used in the Twisted project. | |
| 26 """, | |
| 27 ) | |
| OLD | NEW |