from setuptools import setup, find_packages import sys, os version = '0.1' setup(name='txrestapi', version=version, description="Easing the creation of REST API services in Python", long_description="""\ """, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Ian McCracken', author_email='ian.mccracken@gmail.com', url='http://github.com/iancmcc/txrestapi', license='MIT', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- ], entry_points=""" # -*- Entry points: -*- """, )