sanelogging/setup.py

16 lines
353 B
Python
Raw Normal View History

2016-03-24 06:33:35 +00:00
from setuptools import setup
2016-03-24 06:19:45 +00:00
setup(
name='sanelogging',
2016-03-24 06:33:35 +00:00
version='1.0.1',
2016-03-24 06:19:45 +00:00
author='Jeffrey Paul',
2016-03-24 06:33:35 +00:00
author_email='sneak@sneak.berlin',
2016-03-24 06:19:45 +00:00
packages=['sanelogging'],
2016-03-24 06:33:35 +00:00
url='https://github.com/sneak/sanelogging/',
license='Public Domain',
2016-03-24 06:19:45 +00:00
description='Python logging for humans',
install_requires=[
"colorlog",
],
)