mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-15 13:37:56 +08:00
setting up setup.py and manifest
This commit is contained in:
6
MANIFEST.in
Normal file
6
MANIFEST.in
Normal file
@@ -0,0 +1,6 @@
|
||||
include LICENSE
|
||||
include README.rst
|
||||
include django_q/management/*.py
|
||||
include django_q/management/commands/*.py
|
||||
exclude django_q/management/commands/qtest.py
|
||||
include django_q/migrations/*.py
|
||||
3
setup.py
3
setup.py
@@ -30,11 +30,12 @@ setup(
|
||||
author='Ilan Steemers',
|
||||
author_email='koed00@gmail.com',
|
||||
packages=['django_q'],
|
||||
include_package_data=True,
|
||||
url='https://github.com/koed00/django-q',
|
||||
license='MIT',
|
||||
description='A multiprocessing task queue for Django',
|
||||
long_description=README,
|
||||
install_requires=['django>=1.7', 'redis', 'coloredlogs', 'django-picklefield', 'jsonpickle'],
|
||||
install_requires=['django>=1.7', 'redis', 'coloredlogs', 'django-picklefield', 'jsonpickle', 'blessed'],
|
||||
cmdclass={'test': PyTest},
|
||||
classifiers=[
|
||||
'Development Status :: 2 - PreAlpha',
|
||||
|
||||
Reference in New Issue
Block a user