Changeset 69:6a1a1235936b
- Timestamp:
- 06/05/07 09:42:39
(1 year ago)
- Author:
- Allan Saddi <allan@saddi.com>
- Tags:
1.0
- branch:
- default
- transplant_source:
- �����(����nk�R����
- Message:
Remove publisher and middleware packages. Add cgi server for completeness.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r68 |
r69 |
|
| 8 | 8 | * Prevent ThreadPool inconsistences if an exception is |
|---|
| 9 | 9 | actually raised. Thanks to Tim Chen for the patch. |
|---|
| | 10 | |
|---|
| | 11 | 2007-06-05 Allan Saddi <allan@saddi.com> |
|---|
| | 12 | |
|---|
| | 13 | * Remove publisher and middleware packages. |
|---|
| | 14 | * Add cgi server for completeness. |
|---|
| 10 | 15 | |
|---|
| 11 | 16 | 2007-05-17 Allan Saddi <allan@saddi.com> |
|---|
| … | … | |
| 37 | 42 | * Update servers to default to an empty QUERY_STRING if |
|---|
| 38 | 43 | not present in the environ. |
|---|
| 39 | | |
|---|
| 40 | 44 | * Update gzip.py: compresslevel -> compress_level |
|---|
| 41 | | |
|---|
| 42 | 45 | * Update gzip.py by updating docstrings and renaming |
|---|
| 43 | 46 | classes/methods/functions to better follow Python naming |
|---|
| … | … | |
| 66 | 69 | |
|---|
| 67 | 70 | * Add *_thread egg entry-point aliases. |
|---|
| 68 | | |
|---|
| 69 | 71 | * Add UNIX domain socket support to scgi, scgi_fork, |
|---|
| 70 | 72 | scgi_app. |
|---|
| 71 | | |
|---|
| 72 | 73 | * Add flup.client package which contains various |
|---|
| 73 | 74 | WSGI -> connector client implentations. (So far: FastCGI, |
|---|
| r67 |
r69 |
|
| 6 | 6 | setup( |
|---|
| 7 | 7 | name = 'flup', |
|---|
| 8 | | version = '0.5', |
|---|
| | 8 | version = '1.0', |
|---|
| 9 | 9 | packages = find_packages(), |
|---|
| 10 | | zip_safe = True, # Despite flup.resolver.importingmodule |
|---|
| | 10 | zip_safe = True, |
|---|
| 11 | 11 | |
|---|
| 12 | 12 | entry_points = """ |
|---|
| … | … | |
| 25 | 25 | author = 'Allan Saddi', |
|---|
| 26 | 26 | author_email = 'allan@saddi.com', |
|---|
| 27 | | description = 'Random assortment of WSGI servers, middleware', |
|---|
| | 27 | description = 'Random assortment of WSGI servers', |
|---|
| 28 | 28 | license = 'BSD', |
|---|
| 29 | 29 | url='http://www.saddi.com/software/flup/', |
|---|