-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.33 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
# Copyright (c) 2008-2009 Simplistix Ltd, 2016 Chris Withers
# See license.txt for license details.
import os
from setuptools import setup
package_name = 'errorhandler'
base_dir = os.path.dirname(__file__)
setup(
name=package_name,
version=open(os.path.join(base_dir,package_name,'version.txt')).read().strip(),
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="A logging framework handler that tracks when messages above a certain level have been logged.",
long_description=open(os.path.join(base_dir, 'README.rst')).read(),
url='https://github.com/Simplistix/errorhandler',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=[package_name],
zip_safe=False,
include_package_data=True,
extras_require=dict(
test=['nose', 'nose-fixes', 'nose-cov', 'coveralls'],
build=['sphinx', 'pkginfo', 'setuptools-git', 'wheel', 'twine']
)
)