cmlenz@4: from setuptools import setup, find_packages cmlenz@4: from turbogears.finddata import find_package_data cmlenz@4: cmlenz@4: import os cmlenz@4: execfile(os.path.join("markuptest", "release.py")) cmlenz@4: cmlenz@4: setup( cmlenz@4: name="MarkupTest", cmlenz@4: version=version, cmlenz@4: cmlenz@4: # uncomment the following lines if you fill them out in release.py cmlenz@4: #description=description, cmlenz@4: #author=author, cmlenz@4: #author_email=email, cmlenz@4: #url=url, cmlenz@4: #download_url=download_url, cmlenz@4: #license=license, cmlenz@4: cmlenz@4: install_requires = [ mgood@110: "TurboGears >= 0.9a9dev-r1686", cmlenz@4: ], cmlenz@4: scripts = ["start-markuptest.py"], cmlenz@4: zip_safe=False, cmlenz@4: packages=find_packages(), cmlenz@4: package_data = find_package_data(where='markuptest', cmlenz@4: package='markuptest'), cmlenz@4: keywords = [ cmlenz@4: # Use keywords if you'll be adding your package to the cmlenz@4: # Python Cheeseshop cmlenz@4: cmlenz@4: # if this has widgets, uncomment the next line cmlenz@4: # 'turbogears.widgets', cmlenz@4: cmlenz@4: # if this has a tg-admin command, uncomment the next line cmlenz@4: # 'turbogears.command', cmlenz@4: cmlenz@4: # if this has identity providers, uncomment the next line cmlenz@4: # 'turbogears.identity.provider', cmlenz@4: cmlenz@4: # If this is a template plugin, uncomment the next line cmlenz@4: # 'python.templating.engines', cmlenz@4: cmlenz@4: # If this is a full application, uncomment the next line cmlenz@4: # 'turbogears.app', cmlenz@4: ], cmlenz@4: classifiers = [ cmlenz@4: 'Development Status :: 3 - Alpha', cmlenz@4: 'Operating System :: OS Independent', cmlenz@4: 'Programming Language :: Python', cmlenz@4: 'Topic :: Software Development :: Libraries :: Python Modules', cmlenz@4: 'Framework :: TurboGears', cmlenz@4: # if this is an application that you'll distribute through cmlenz@4: # the Cheeseshop, uncomment the next line cmlenz@4: # 'Framework :: TurboGears :: Applications', cmlenz@4: cmlenz@4: # if this is a package that includes widgets that you'll distribute cmlenz@4: # through the Cheeseshop, uncomment the next line cmlenz@4: # 'Framework :: TurboGears :: Widgets', cmlenz@4: ], cmlenz@4: test_suite = 'nose.collector', cmlenz@4: ) cmlenz@4: