root / setup.py

View | Annotate | Download (1.9 KB)

# Date Author Comment
d31b397e 2010-04-27 12:56 Matt Goodall

Increment version for future release.

f78b1ec6 2010-04-27 12:45 Matt Goodall

Prepare 0.11 release.

017ce3f6 2010-02-25 12:33 Matt Goodall

Remove dependency on setuptools' ez_setup.

Install setuptools or distribute manually, it's your choice.

522aeb8a 2010-02-17 11:22 Matt Goodall

Increment version for further development.

cc6f2d1d 2010-02-17 10:59 Matt Goodall

Prepare for 0.10 release.

f0c5d910 2009-07-27 16:59 Matt Goodall

Add a DjangoRenderer (django.template -based rendering) contrib module
and tests.

955bc546 2009-07-15 12:25 Matt Goodall

Convert most of the tests to use WebTest instead of the wsgi_out util
and hand-built requests. Deprecate wsgi_out.

WebTest has a nicer API but it also provides lint-like checks on the
response so it's actually checking the sanity of the response at the
same time as the actual tests....

aec2b12b 2009-05-20 13:46 Matt Goodall

Require various templating engines for tests.

6fc89652 2009-05-20 13:43 Matt Goodall

Include ez_setup.py to bootstrap setup.py on setuptools-less
installations.

Please, use your OS's package manager to install setuptools if possible.
Otherwsie, i.e. Python 2.4 on Ubuntu 9.04, this should do it for you.

a9acd138 2009-04-21 16:49 Matt Goodall

Prepare for future release.

30088efb 2009-04-21 16:28 Matt Goodall

Prepare 0.9 release.

c5295fe8 2009-04-20 10:38 Matt Goodall

Replace (private) copy of mimeparse with an external dependency.

mimeparse is now available from pypi (e.g. easy_install mimeparse) so
I've completely removed the copy from restish.

c6d2c89e 2009-03-23 14:43 Matt Goodall

Add test_suite to setup.py and remove prints.

Thanks to greut for the idea, although I decided to use setuptools's
built-in support for collecting the test suite rather than relying on
nose. You can always run 'nosetests' instead, if it's installed.

2664f906 2009-03-02 22:44 Matt Goodall

Move version to next dev release.

bcca031d 2009-03-02 22:40 Matt Goodall

Prepare 0.8 release.

3fe7ac3a 2009-02-17 23:42 Matt Goodall

Prepare 0.7.2 release

1e4eaa2e 2009-02-12 00:21 Matt Goodall

Prepare 0.7.1 release.

dc021e3e 2009-01-22 15:53 Matt Goodall

Move version for future release.

299e0299 2009-01-22 15:40 Matt Goodall

Prepare 0.7 release.

f3160e5e 2009-01-13 16:40 Tim Parkin

added changelog link to setup.py

e3470477 2009-01-13 16:36 Matt Goodall

Prepare for future release.

1a3a0908 2009-01-13 16:23 Matt Goodall

Prepare 0.6 release.

33391954 2009-01-08 16:59 Matt Goodall

Set zip_safe=False to work better with Paster.

It turns out "paster create" doesn't like compressed eggs.

(Merged from dev-0.5 branch).

a3bc3ba0 2009-01-07 17:15 Matt Goodall

Fix URL to remove the query string and anchor if the path is changed.

The query string and anchor id are both typically specific to the
content of the page. It therefore makes no sense to keep them when the
path is changed.

8a321e03 2009-01-06 14:16 Tim Parkin

pulled version back for minor release

054d56c1 2009-01-05 13:16 Matt Goodall

Move version for future releases.

013f9dc2 2009-01-05 12:15 Matt Goodall

Add longer description to setup.py.

109636dd 2009-01-05 12:07 Matt Goodall

Prepare for first official release to the world.

57d711fe 2008-11-14 12:09 Matt Goodall

Add a paster template to generate a basic restish project.

5d70928a 2008-11-14 10:21 Matt Goodall

Remove all dependence on Pylons and specific templating engines.

Restish now has no support for specific templating engines (it only
supported Mako anyway ;-)). Instead the developer is expected to
configure the restish.templating.renderer environ key with a callable...

a994910e 2008-07-18 16:37 Matt Goodall

Add setuptools stuff.