root / tags / 1.0.1 / setup.py

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# encoding: utf-8
2
3from setuptools import setup, find_packages
4from turbogears.finddata import find_package_data
5
6import os
7execfile(os.path.join("turbomail", "release.py"))
8
9setup(
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 :: 4 - Beta',
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       
Note: See TracBrowser for help on using the browser.