| 1 | from setuptools import setup, find_packages |
|---|
| 2 | |
|---|
| 3 | classifiers = """ |
|---|
| 4 | "Development Status :: 3 - Alpha", |
|---|
| 5 | "Intended Audience :: Developers", |
|---|
| 6 | "License :: OSI Approved :: MIT License", |
|---|
| 7 | "Operating System :: OS Independent", |
|---|
| 8 | "Programming Language :: Python", |
|---|
| 9 | "Topic :: Database :: Front-Ends", |
|---|
| 10 | "Topic :: Software Development :: Libraries :: Python Modules" |
|---|
| 11 | """ |
|---|
| 12 | |
|---|
| 13 | setup(name="Elixir", |
|---|
| 14 | version="0.0.1", |
|---|
| 15 | description="Declarative Mapper for SQLAlchemy", |
|---|
| 16 | long_description=""" |
|---|
| 17 | Elixir |
|---|
| 18 | ====== |
|---|
| 19 | |
|---|
| 20 | A declarative layer on top of SQLAlchemy, which is intended to replace the |
|---|
| 21 | ActiveMapper SQLAlchemy extension, and the TurboEntity project. Elixir is a |
|---|
| 22 | fairly thin wrapper around SQLAlchemy, which provides the ability to define |
|---|
| 23 | model objects following the Active Record design pattern, and using a DSL |
|---|
| 24 | syntax similar to that of the Ruby on Rails ActiveRecord system. |
|---|
| 25 | |
|---|
| 26 | Elixir does not intend to replace SQLAlchemy's core features, but instead |
|---|
| 27 | focuses on providing a simpler syntax for defining model objects when you do |
|---|
| 28 | not need the full expressiveness of SQLAlchemy's manual mapper definitions. |
|---|
| 29 | """, |
|---|
| 30 | author="", |
|---|
| 31 | author_email="", |
|---|
| 32 | url="http://supermodel.ematia.de", |
|---|
| 33 | install_requires = [ |
|---|
| 34 | "SQLAlchemy >= 0.3.0" |
|---|
| 35 | ], |
|---|
| 36 | packages=['elixir', |
|---|
| 37 | 'elixir.tests'], |
|---|
| 38 | classifiers=classifiers, |
|---|
| 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 | test_suite = 'nose.collector') |
|---|