forked from keitheis/alog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (47 loc) · 1.3 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
44
45
46
47
48
49
50
51
52
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()
except IOError:
README = CHANGES = ''
testing_extras = [
'pytest',
'coverage',
'pytest-cov',
]
docs_extras = [
'Sphinx >= 1.3.1',
]
setup(
name='alog',
version='0.9.7',
description='Python logging for Humans',
long_description='',
url='https://github.org/keitheis/alog',
author='Keith Yang',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Logging',
'Topic :: Software Development',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='simple basic application logging',
packages=['alog'],
package_data={'': ['LICENSE']},
zip_safe=False,
extras_require={
'testing': testing_extras,
'docs': docs_extras,
},
)