Skip to content

Commit 31dcafd

Browse files
author
Matt George
committed
getting ready to remove resweb
1 parent 01a0fe1 commit 31dcafd

File tree

4 files changed

+20
-26
lines changed

4 files changed

+20
-26
lines changed

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
##1.3 (2012-06-01)
2+
* remove resweb from pyres
3+
4+
##1.2
5+
* release with changes from pull requests
6+
17
##1.1 (2011-06-16)
28
* api change based on redis-py
39
* setproctitle requirements fix

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
simplejson==2.0.9
2-
itty==0.6.2
32
redis==2.4.12
4-
pystache==0.5.0
53
setproctitle>=1.0

roadmap.md

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
pyres todo and roadmap
22

3-
Version 0.6
4-
===========
5-
* better webtests
6-
* resweb pagination
7-
8-
Version 0.7
9-
===========
10-
* resweb controls for failed queues
11-
* scheduled tasks
12-
13-
Version 0.8
14-
===========
15-
* horde package integration
16-
* web interface to horde
17-
18-
Version 1.0
19-
===========
20-
* stabilize the api
21-
* semantic versioning
3+
1.3
4+
===
5+
* resweb moved into own package
6+
7+
2.0
8+
===
9+
* move from duck typed class to a decorated function for jobs
10+
* add better hooks, like retools
11+
12+
2.1
13+
===
14+
* add namespace support
15+
* cleanup workers/extensions

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version='1.2'
3+
version='1.3'
44

55
setup(
66
name='pyres',
@@ -14,19 +14,15 @@
1414
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
1515
download_url='http://pypi.python.org/packages/source/p/pyres/pyres-%s.tar.gz' % version,
1616
include_package_data=True,
17-
package_data={'resweb': ['templates/*.mustache','media/*']},
1817
entry_points = """\
1918
[console_scripts]
2019
pyres_manager=pyres.scripts:pyres_manager
2120
pyres_scheduler=pyres.scripts:pyres_scheduler
22-
pyres_web=pyres.scripts:pyres_web
2321
pyres_worker=pyres.scripts:pyres_worker
2422
""",
2523
install_requires=[
2624
'simplejson>=2.0.9',
27-
'itty>=0.6.2',
2825
'redis==2.4.12',
29-
'pystache>=0.1.0',
3026
'setproctitle>=1.0'
3127
],
3228
classifiers = [

0 commit comments

Comments
 (0)