diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..8b9a9b5 --- /dev/null +++ b/MANIFEST.in @@ -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 \ No newline at end of file diff --git a/setup.py b/setup.py index c2574b8..10f77c3 100644 --- a/setup.py +++ b/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',