Skip to content

Commit

Permalink
adding README.txt for setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt George committed Aug 15, 2012
1 parent 771fc6d commit 68247a7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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'
Expand Down

0 comments on commit 68247a7

Please sign in to comment.