|
Revision 17, 0.7 kB
(checked in by cleverdevil, 6 years ago)
|
|
Finishing the name change from 'supermodel' to 'elixir'.
|
| Line | |
|---|
| 1 | classifiers = """ |
|---|
| 2 | "Development Status :: 3 - Alpha", |
|---|
| 3 | "Intended Audience :: Developers", |
|---|
| 4 | "License :: OSI Approved :: MIT License", |
|---|
| 5 | "Operating System :: OS Independent", |
|---|
| 6 | "Programming Language :: Python", |
|---|
| 7 | "Topic :: Database :: Front-Ends", |
|---|
| 8 | "Topic :: Software Development :: Libraries :: Python Modules" |
|---|
| 9 | """ |
|---|
| 10 | |
|---|
| 11 | from setuptools import setup, find_packages |
|---|
| 12 | |
|---|
| 13 | setup(name="Elixir", |
|---|
| 14 | version="0.0.1", |
|---|
| 15 | description="Declarative Mapper for SQLAlchemy", |
|---|
| 16 | author="", |
|---|
| 17 | author_email="", |
|---|
| 18 | url="http://supermodel.ematia.de", |
|---|
| 19 | install_requires = [ |
|---|
| 20 | "SQLAlchemy >= 0.3.0" |
|---|
| 21 | ], |
|---|
| 22 | packages=['elixir', |
|---|
| 23 | 'elixir.tests'], |
|---|
| 24 | classifiers=classifiers, |
|---|
| 25 | test_suite = 'nose.collector') |
|---|