from setuptools import setup, find_packages try: from turbogears.finddata import find_package_data except ImportError: from finddata import find_package_data import os execfile(os.path.join("naked_planning", "release.py")) packages=find_packages() package_data = find_package_data(where='naked_planning', package='naked_planning') if os.path.isdir('locales'): packages.append('locales') package_data.update(find_package_data(where='locales', exclude=('*.po',), only_in_packages=False)) setup( name="nakedplanning", version=version, description=description, long_description=long_description, author=author, author_email=email, url=url, #download_url=download_url, license=license, install_requires=[ "SQLAlchemy >= 0.4.2", "TurboGears[testtools] == 1.0.4b6", "pyreadline", "ipython", "pysqlite >= 2.3.5", "virtualenv == 0.9.1", "sqlobject >= 0.7.1, <= 0.7.999999", ], scripts=["start-naked_planning.py"], zip_safe=False, packages=packages, package_data=package_data, keywords=[ # if this has widgets, uncomment the next line # 'turbogears.widgets', 'turbogears.app', 'kanban','agile','lean','planning','xp','extreme','programming','roadmap','naked', ], classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', 'Framework :: TurboGears', 'Framework :: TurboGears :: Applications', # if this is a package that includes widgets that you'll distribute # through the Cheeseshop, uncomment the next line # 'Framework :: TurboGears :: Widgets', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Topic :: Communications', 'Topic :: Software Development', ], test_suite='nose.collector', )