forked from simplistix/mailinglogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) 2007-2010 Simplistix Ltd
#
# This Software is released under the MIT License:
# http://www.opensource.org/licenses/mit-license.html
# See license.txt for more details.
import os
from setuptools import setup, find_packages
this_dir = os.path.dirname(__file__)
tests_require = ['manuel', 'testfixtures']
setup(
name='mailinglogger',
version=file(os.path.join(this_dir,'mailinglogger','version.txt')).read().strip(),
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="Enhanced emailing handlers for the python logging package.",
long_description=open(os.path.join(this_dir,'docs','description.txt')).read(),
url='http://www.simplistix.co.uk/software/python/mailinglogger',
keywords="logging email",
classifiers=[
'Development Status :: 6 - Mature',
'Framework :: Plone',
'Framework :: Zope2',
'Framework :: Zope3',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Logging',
],
packages=find_packages(),
tests_require=tests_require,
extras_require = {
'test': tests_require,
},
zip_safe=False,
include_package_data=True,
)