|
Revision 1, 0.9 kB
(checked in by amcgregor, 2 years ago)
|
|
Initial import of entire TurboMail tree.
Effectively a full transfer from our in-house Subversion server.
Includes past releases and trunk.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup, find_packages |
|---|
| 4 | from turbogears.finddata import find_package_data |
|---|
| 5 | |
|---|
| 6 | import os |
|---|
| 7 | execfile(os.path.join("turbomail", "release.py")) |
|---|
| 8 | |
|---|
| 9 | setup( |
|---|
| 10 | name="TurboMail", |
|---|
| 11 | version=version, |
|---|
| 12 | |
|---|
| 13 | description=description, |
|---|
| 14 | author=author, |
|---|
| 15 | author_email=email, |
|---|
| 16 | url=url, |
|---|
| 17 | download_url=download_url, |
|---|
| 18 | license=license, |
|---|
| 19 | |
|---|
| 20 | install_requires = ["TurboGears >= 1.0b1",], |
|---|
| 21 | zip_safe=True, |
|---|
| 22 | packages=find_packages(), |
|---|
| 23 | package_data = find_package_data(where='turbomail', package='turbomail'), |
|---|
| 24 | keywords = ["turbogears.extension"], |
|---|
| 25 | classifiers = [ |
|---|
| 26 | 'Development Status :: 5 - Production/Stable', |
|---|
| 27 | 'Operating System :: OS Independent', |
|---|
| 28 | 'Programming Language :: Python', |
|---|
| 29 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 30 | 'Framework :: TurboGears', |
|---|
| 31 | ], |
|---|
| 32 | test_suite = 'nose.collector', |
|---|
| 33 | entry_points = {'turbogears.extensions': ["turbomail = turbomail"]} |
|---|
| 34 | ) |
|---|
| 35 | |
|---|