Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
corepost
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nexlab
corepost
Commits
03daee09
Commit
03daee09
authored
Oct 11, 2011
by
Jacek Furmankiewicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing setup.py to separate test libs from install_requires
parent
7f80dfe8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
setup.py
setup.py
+14
-7
No files found.
setup.py
View file @
03daee09
...
@@ -40,11 +40,14 @@ Links
...
@@ -40,11 +40,14 @@ Links
Changelog
Changelog
`````````
`````````
* 0.0.8:
* 0.0.7 - automatic parsing of incoming content (JSON, YAML, XML)
- support for serializing of classes to JSON,XML,YAML based on caller's Accept header
- routing by incoming content type
- separate routing functionality from CorePost Resource object, in preparation for future multicore support
- automatic response conversion based on caller's Accept header (JSON/YAML)
* 0.0.7:
- support for defer.returnValue() in @inlineCallbacks route methods
- automatic parsing of incoming content (JSON, YAML, XML)
- routing by incoming content type
- automatic response conversion based on caller's Accept header (JSON/YAML
- support for defer.returnValue() in @inlineCallbacks route methods
* 0.0.6 - redesigned API around classes and methods, rather than functions and global objects (after feedback from Twisted devs)
* 0.0.6 - redesigned API around classes and methods, rather than functions and global objects (after feedback from Twisted devs)
* 0.0.5 - added FormEncode validation for arguments
* 0.0.5 - added FormEncode validation for arguments
* 0.0.4 - path argument extraction, mandatory argument error checking
* 0.0.4 - path argument extraction, mandatory argument error checking
...
@@ -84,11 +87,15 @@ setup(
...
@@ -84,11 +87,15 @@ setup(
],
],
install_requires
=
[
install_requires
=
[
'twisted>=11.0.0'
,
'twisted>=11.0.0'
,
'httplib2>=0.7.1'
,
'freshen>=0.2'
,
'formencode>=1.2.4'
,
'formencode>=1.2.4'
,
'pyyaml>=3.1.0'
,
'pyyaml>=3.1.0'
,
'jinja2>=2.6'
'jinja2>=2.6'
],
],
tests_require
=
[
'httplib2>=0.7.1'
,
'freshen>=0.2'
,
],
zip_safe
=
True
)
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment