Skip to content

Commit

Permalink
Add lxml and elixir.
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Sep 22, 2010
1 parent ec56456 commit 3034c09
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ libraries:

- wsgiref_ 0.1.2 or newer (included in Python 2.5 and newer)
- cElementTree_ 1.0.5 or newer (included in Python 2.5 and newer)
- lxml_ 2.2 or newer
- SQLAlchemy_ 0.4 or newer
- Twisted_ 2.5 or newer
- Django_ 0.97 or newer
Expand Down Expand Up @@ -142,6 +143,7 @@ Sphinx
To build the main documentation you need:

- Sphinx_ 1.0 or newer
- `sphinxcontrib.epydoc`_ 0.4 or newer
- a :doc:`copy <community/download>` of the PyAMF source distribution

Unix users run the command below in the ``doc`` directory to create the
Expand Down Expand Up @@ -186,6 +188,7 @@ folder.
.. _ez_setup.py: http://github.com/hydralabs/pyamf/blob/master/ez_setup.py
.. _Epydoc: http://epydoc.sourceforge.net
.. _ElementTree: http://effbot.org/zone/element-index.htm
.. _lxml: http://codespeak.net/lxml
.. _uuid: http://pypi.python.org/pypi/uuid
.. _wsgiref: http://pypi.python.org/pypi/wsgiref
.. _cElementTree: http://effbot.org/zone/celementtree.htm
Expand All @@ -202,3 +205,4 @@ folder.
.. _Sphinx: http://sphinx.pocoo.org
.. _website: http://pyamf.org
.. _Installing Python Modules: http://docs.python.org/install/index.html
.. _sphinxcontrib.epydoc: http://packages.python.org/sphinxcontrib-epydoc
3 changes: 2 additions & 1 deletion doc/whatsnew/0.6.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Highlighted Features
* The default AMF version has been switched from `AMF0` to `AMF3`.
* Introduced a new adapter for Elixir_, a thin wrapper around SQLAlchemy.
* Provide support for :doc:`property synonyms </architecture/attributecontrol>`.

* Support for lxml_.

Backward Incompatible API Changes
=================================
Expand Down Expand Up @@ -64,6 +64,7 @@ SQLAlchemy


.. _Elixir: http://www.elixir.ematia.de
.. _lxml: http://codespeak.net/lxml
.. _#732: http://dev.pyamf.org/ticket/732
.. _#700: http://dev.pyamf.org/ticket/700
.. _#651: http://dev.pyamf.org/ticket/651
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,14 +163,16 @@ def main():
platforms = ["any"],
cmdclass = {
'build_ext': build_ext,
'test': TestCommand
'test': TestCommand
},
extras_require = {
'wsgi': ['wsgiref'],
'twisted': ['Twisted>=2.5.0'],
'django': ['Django>=0.96'],
'sqlalchemy': ['SQLAlchemy>=0.4'],
'elixir': ['Elixir>=0.7.1'],
'cython': ['Cython>=0.12.1'],
'lxml': ['lxml>=2.2'],
},
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 3034c09

Please sign in to comment.