| 1 | from setuptools import setup, find_packages |
|---|
| 2 | from turbogears.finddata import find_package_data |
|---|
| 3 | |
|---|
| 4 | import os |
|---|
| 5 | execfile(os.path.join("cogplanet", "release.py")) |
|---|
| 6 | |
|---|
| 7 | setup( |
|---|
| 8 | name="cogplanet", |
|---|
| 9 | version=version, |
|---|
| 10 | |
|---|
| 11 | # uncomment the following lines if you fill them out in release.py |
|---|
| 12 | description=description, |
|---|
| 13 | long_description=long_description, |
|---|
| 14 | author=author, |
|---|
| 15 | author_email=email, |
|---|
| 16 | url=url, |
|---|
| 17 | #download_url=download_url, |
|---|
| 18 | license=license, |
|---|
| 19 | |
|---|
| 20 | dependency_links = [ |
|---|
| 21 | "http://sourceforge.net/project/showfiles.php?group_id=112328&package_id=121603&release_id=384485", |
|---|
| 22 | ], |
|---|
| 23 | |
|---|
| 24 | install_requires = [ |
|---|
| 25 | "BeautifulSoup", |
|---|
| 26 | "feedparser", |
|---|
| 27 | "Genshi", |
|---|
| 28 | "TurboGears >= 1.0.1", |
|---|
| 29 | "SQLAlchemy", |
|---|
| 30 | ], |
|---|
| 31 | scripts = ["start-cogplanet.py"], |
|---|
| 32 | zip_safe=False, |
|---|
| 33 | packages=find_packages(), |
|---|
| 34 | package_data = find_package_data(where='cogplanet', |
|---|
| 35 | package='cogplanet'), |
|---|
| 36 | keywords = [ |
|---|
| 37 | # Use keywords if you'll be adding your package to the |
|---|
| 38 | # Python Cheeseshop |
|---|
| 39 | |
|---|
| 40 | # if this has widgets, uncomment the next line |
|---|
| 41 | # 'turbogears.widgets', |
|---|
| 42 | |
|---|
| 43 | # if this has a tg-admin command, uncomment the next line |
|---|
| 44 | # 'turbogears.command', |
|---|
| 45 | |
|---|
| 46 | # if this has identity providers, uncomment the next line |
|---|
| 47 | # 'turbogears.identity.provider', |
|---|
| 48 | |
|---|
| 49 | # If this is a template plugin, uncomment the next line |
|---|
| 50 | # 'python.templating.engines', |
|---|
| 51 | |
|---|
| 52 | # If this is a full application, uncomment the next line |
|---|
| 53 | 'turbogears.app', |
|---|
| 54 | ], |
|---|
| 55 | classifiers = [ |
|---|
| 56 | 'Development Status :: 3 - Alpha', |
|---|
| 57 | 'Operating System :: OS Independent', |
|---|
| 58 | 'Programming Language :: Python', |
|---|
| 59 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 60 | # 'Framework :: TurboGears', |
|---|
| 61 | # if this is an application that you'll distribute through |
|---|
| 62 | # the Cheeseshop, uncomment the next line |
|---|
| 63 | 'Framework :: TurboGears :: Applications', |
|---|
| 64 | |
|---|
| 65 | # if this is a package that includes widgets that you'll distribute |
|---|
| 66 | # through the Cheeseshop, uncomment the next line |
|---|
| 67 | # 'Framework :: TurboGears :: Widgets', |
|---|
| 68 | ], |
|---|
| 69 | test_suite = 'nose.collector', |
|---|
| 70 | ) |
|---|
| 71 | |
|---|