setting up setup.py and manifest

This commit is contained in:
Ilan Steemers
2015-06-24 19:55:46 +02:00
parent e0864f037d
commit 4556a8dc69
2 changed files with 8 additions and 1 deletions

6
MANIFEST.in Normal file
View 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

View File

@@ -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',