-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matt George
committed
Aug 15, 2012
1 parent
771fc6d
commit 68247a7
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|