Adding setup

This commit is contained in:
Ilan Steemers
2015-06-17 13:33:15 +02:00
parent 093431e88d
commit 4ffa0f7054
3 changed files with 47 additions and 2 deletions
+3 -2
View File
@@ -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.
+7
View File
@@ -0,0 +1,7 @@
Django-q
========
A multiprocessing task queue application for Django
---------------------------------------------------
Currently in the pre-alpha stage.
+37
View File
@@ -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',
]
)