forked from simplistix/mailinglogger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.26 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
# Copyright (c) 2007-2014 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__)
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',
'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(),
zip_safe=False,
include_package_data=True,
extras_require=dict(
test=['nose', 'nose_fixes', 'testfixtures', 'manuel', 'nose-cov'],
)
)