from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='PyWordpress', version=version, description="Wordpress with a WSGI wrapper", long_description="""\ """, classifiers=[ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Programming Language :: PHP', 'Topic :: Internet :: WWW/HTTP :: WSGI', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary', ], keywords='blog wsgi', author='Ian Bicking', author_email='ianb@colorstudy.com', url='', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'PasteDeploy', 'wphp', ], entry_points=""" [paste.app_factory] main = pywordpress.wsgiapp:make_app """, )