from setuptools import setup, find_packages from pyston.version import get_version setup(name="django-pyston", version=get_version(), description="Pyston is a Django mini-framework creating APIs.", author='Lubos Matl', author_email='*****@*****.**', url='https://github.com/matllubos/django-pyston', license='BSD', package_dir={'pyston': 'pyston'}, include_package_data=True, packages=find_packages(), classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', ], install_requires=[ 'django>=1.10', 'python-mimeparse==0.1.4', 'django-chamber>=0.4.0', 'pyparsing>=2.2.0', ], zip_safe=False)
from setuptools import setup, find_packages from pyston.version import get_version setup( name="django-pyston", version=get_version(), description="Pyston is a Django mini-framework creating APIs.", author='Lubos Matl', author_email='*****@*****.**', url='https://github.com/matllubos/django-pyston', license='BSD', package_dir={'pyston': 'pyston'}, include_package_data=True, packages=find_packages(), classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP', ], install_requires=[ 'django>=1.6', 'mimeparse>=0.1.3', 'django-chamber>=0.1.13' ], dependency_links=[