root / branches / 2.x / setup.py

Revision 67, 1.8 kB (checked in by alberto, 1 year ago)

Applied reindent.py an all .py files to switch from tabs to 4 spaces. Closes #66

Line 
1#!/usr/bin/env python
2# encoding: utf-8
3
4import sys
5from setuptools import setup, find_packages
6from turbogears.finddata import find_package_data
7
8if sys.version_info < (2, 3):
9    raise SystemExit("Python 2.3 or later is required")
10
11import os
12execfile(os.path.join("turbomail", "release.py"))
13
14setup(
15                name="TurboMail",
16                version=version,
17
18                description=description,
19                long_description=long_description,
20                author=author,
21                author_email=email,
22                url=url,
23                download_url=download_url,
24                license=license,
25
26                install_requires = ["TurboGears >= 0.9a9dev-r2003"],
27                zip_safe=True,
28                packages=find_packages(),
29                package_data = find_package_data(where='turbomail', package='turbomail'),
30                keywords = ["turbogears.extension"],
31                classifiers = [
32                        'Development Status :: 5 - Production/Stable',
33                        'Framework :: TurboGears',
34                        'Intended Audience :: Developers',
35                        'License :: OSI Approved :: MIT License',
36                        'Operating System :: OS Independent',
37                        'Programming Language :: Python',
38                        'Topic :: Communications :: Email',
39                        'Topic :: Software Development :: Libraries :: Python Modules',
40                ],
41                test_suite = 'nose.collector',
42                entry_points = {
43#                               'paste.paster_create_template': ["turbomail = turbomail.startup:MailTemplate"]
44                                'turbogears.extensions': ["turbomail = turbomail"]
45                        }
46        )
Note: See TracBrowser for help on using the browser.