From 4ffa0f7054cf43e80a6b8c93a4a1641b20e9669f Mon Sep 17 00:00:00 2001 From: Ilan Steemers Date: Wed, 17 Jun 2015 13:33:15 +0200 Subject: [PATCH] Adding setup --- README.md | 5 +++-- README.rst | 7 +++++++ setup.py | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 README.rst create mode 100644 setup.py diff --git a/README.md b/README.md index bbf3e56..b4fe3b2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# django-q -An experiment in multiprocessing +# Django-q +##A multiprocessing task queue application for Django +Currently in the pre-alpha stage. \ No newline at end of file diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..574b4b2 --- /dev/null +++ b/README.rst @@ -0,0 +1,7 @@ +Django-q +======== + +A multiprocessing task queue application for Django +--------------------------------------------------- + +Currently in the pre-alpha stage. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..67a8b74 --- /dev/null +++ b/setup.py @@ -0,0 +1,37 @@ +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', + ] +) \ No newline at end of file