-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 687 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 687 Bytes
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
#!/usr/bin/python
from distutils.core import setup
setup(
name='ScribeHandler',
author='Jeremy Jones',
author_email='jeremyj@letifer.org',
url='http://github.com/jmj/ScribeHandler',
version='0.05',
py_modules=['ScribeHandler'],
license='GPLv2',
long_description=open('README').read(),
description='ScribeHandler is a simple proxy layer that works with the python standard logging module',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
],
keywords=[
'scribe', 'logging', 'scribed'
],
download_url='http://pypi.python.org/pypi/ScribeHandler',
platform='any',
)