from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='kss.pylons', version=version, description="Pylons integration for KSS (Kinetic Style Sheets)", long_description="""\ """, # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules", ], keywords='', author='KSS Project', author_email='kss-devel@codespeak.net', url='http://kssproject.org', license='LGPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['kss'], include_package_data=True, zip_safe=False, install_requires=[ 'setuptools', 'kss.base>=dev', ], entry_points={ 'kss.javascript': [ 'kukit=kss.pylons.core:core_javascripts', ] }, test_suite='kss.pylons.tests.test_suite', dependency_links=[ 'https://codespeak.net/svn/kukit/kss.base/trunk#egg=kss.base-dev', ] )