sanelogging/setup.py

18 lines
388 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',
2019-08-27 16:14:38 +00:00
version='1.1.0',
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",
"pytz",
"datetime"
2016-03-24 06:19:45 +00:00
],
)