From 68247a75d7d0e3f10763bf4e78d7020fb2c39b29 Mon Sep 17 00:00:00 2001 From: Matt George Date: Wed, 15 Aug 2012 14:03:58 -0500 Subject: [PATCH] adding README.txt for setuptools --- README.txt | 12 ++++++++++++ setup.py | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 README.txt diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..8bfd33c --- /dev/null +++ b/README.txt @@ -0,0 +1,12 @@ +About +===== +django pyres provides a way to run workers via the django manage.py command. + +Motivation +========== +Several people have asked how to interact with the django orm from within pyres jobs. By running the +workers through the manage command, you don't have to mess around with setting variables in the os.environ object. + +Changes +======= +0.1.2 - cleaned up the decorators so database connections are closed at the end of a job. \ No newline at end of file diff --git a/setup.py b/setup.py index fccc27a..060de5e 100644 --- a/setup.py +++ b/setup.py @@ -7,15 +7,15 @@ def read(fname): name='django-pyres', version=version, description='django pyres integration', - long_description=read('README.md'), + long_description=read('README.txt'), author='Matt George', author_email='mgeorge@gmail.com', maintainer='Matt George', license='MIT', url='http://github.com/Pyres/django_pyres', packages=find_packages(exclude=['ez_setup', 'example','testapp','tests']), + package_data={'': ['README.txt']}, include_package_data=True, - package_data={'': ['README.md']}, install_requires=[ 'pyres>=1.4.1', 'django-appconf>=0.5'