forked from Python-Logging-For-Human/lazy_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (25 loc) · 841 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='lazy_logger',
version="0.1.1",
description='provide a better logging',
long_description=open('README.md').read(),
author='lazy_logger',
url='https://github.com/Python-Logging-For-Human/ezlogging',
author_email='[email protected]',
license='MIT',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules=['lazy_logger'],
)