mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-24 07:58:11 +08:00
Adding setup
This commit is contained in:
@@ -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.
|
||||
@@ -0,0 +1,7 @@
|
||||
Django-q
|
||||
========
|
||||
|
||||
A multiprocessing task queue application for Django
|
||||
---------------------------------------------------
|
||||
|
||||
Currently in the pre-alpha stage.
|
||||
@@ -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',
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user