from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='p4a.revvervideo', version=version, description="A product providing video content stored using the Revver XMLRPC API", long_description="""\ """, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers keywords='Video', author='Alec Mitchell', author_email='apm13@columbia.edu', url='http://www.plone4artists.org/svn/projects/p4a.revvervideo', license='GPL', packages=find_packages(exclude=['ez_setup']), namespace_packages=['p4a'], include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- """, )