-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 804 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 804 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
26
27
28
29
from setuptools import setup
setup(
name='spylogger',
packages=['spylogger'],
version='1.2.2',
include_package_data=True,
description='Python logging library',
long_description=open('README.rst').read(),
url='https://github.com/devstuff-io/spylogger',
author='meganlkm',
author_email='devstuff.io@gmail.com',
install_requires=[],
extras_require={
'pretty': [
'Pygments',
'pygments-json',
'pygments-solarized'
]
},
keywords=['logging', 'logs', 'pretty'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Logging',
]
)