root/website/setup.py
| Revision 1734, 387 bytes (checked in by kevin, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | from ez_setup import use_setuptools |
| 2 | use_setuptools() |
| 3 | from setuptools import setup, find_packages |
| 4 | from pkg_resources import DistributionNotFound |
| 5 | |
| 6 | setup( |
| 7 | name="TGWebsite", |
| 8 | download_url="http://www.turbogears.org/", |
| 9 | description="TurboGears web site resources", |
| 10 | long_description="""TurboGears web site |
| 11 | """, |
| 12 | url="http://www.turbogears.org", |
| 13 | zip_safe=False, |
| 14 | ) |
| 15 |
Note: See TracBrowser for help on using the browser.