Changeset 257
- Timestamp:
- 10/29/07 12:31:58 (6 years ago)
- Location:
- elixir/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/setup.cfg
r203 r257 3 3 tag_svn_revision = true 4 4 5 [pudge]6 template_dir = docs/template7 fragment = true8 docs = docs/*.rst9 doc_base = docs/10 dest = docs/html11 modules = elixir, elixir.entity, elixir.fields, elixir.options,12 elixir.relationships13 exclude_modules = elixir.statements14 title = Elixir15 xhtml = true -
elixir/trunk/setup.py
r186 r257 8 8 ====== 9 9 10 A declarative layer on top of SQLAlchemy. It is a fairly thin wrapper, which 11 provides the ability to define model objects following the Active Record 12 design pattern, and using a DSL syntax similar to that of the Ruby on Rails 13 ActiveRecord system. 14 15 Elixir does not intend to replace SQLAlchemy's core features, but instead 16 focuses on providing a simpler syntax for defining model objects when you do 17 not need the full expressiveness of SQLAlchemy's manual mapper definitions. 10 A declarative layer on top of SQLAlchemy. It is a fairly thin wrapper, which 11 provides the ability to create simple Python classes that map directly to 12 relational database tables (this pattern is often referred to as the Active 13 Record design pattern), providing many of the benefits of traditional 14 databases without losing the convenience of Python objects. 18 15 19 16 Elixir is intended to replace the ActiveMapper SQLAlchemy extension, and the 20 TurboEntity project. 17 TurboEntity project but does not intend to replace SQLAlchemy's core features, 18 and instead focuses on providing a simpler syntax for defining model objects 19 when you do not need the full expressiveness of SQLAlchemy's manual mapper 20 definitions. 21 21 """, 22 22 author="Gaetan de Menten, Daniel Haus and Jonathan LaCour", … … 37 37 "Topic :: Software Development :: Libraries :: Python Modules" 38 38 ], 39 extras_require = {40 'pudge': ["docutils>=0.4", "elementtree>=1.2.6", "kid>=0.9",41 "Pygments==dev,>=0.7dev-r2661", "pudge==dev,>=0.1.3dev-r134",42 "buildutils==dev,>=0.1.2dev-r109",],43 },44 39 test_suite = 'nose.collector')
