import os from setuptools import setup with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: README = readme.read() os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='django-q', version='0.1.0', author='Ilan Steemers', author_email='koed00@gmail.com', packages=['django_q'], url='https://github.com/koed00/django-whoshere', license='MIT', description='A multiprocessing task queue for Django', long_description=README, include_package_data=True, install_requires=['django>=1.7', 'redis'], test_suite='django_q.tests', classifiers=[ 'Development Status :: 2 - PreAlpha', 'Environment :: Web Environment', 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', ] )