Files
Matthew D. Scholefield 33b834b9fe Increment version to 0.3.0
2021-11-10 00:43:36 -08:00

26 lines
805 B
Python

from setuptools import setup
setup(
name='uvicorn-loguru-integration',
version='0.3.0',
description='Code to integrate uvicorn.run with Loguru logging',
url='https://github.com/MatthewScholefield/uvicorn-loguru-integration',
author='Matthew D. Scholefield',
author_email='matthew331199@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='uvicorn loguru integration',
py_modules=['uvicorn_loguru_integration'],
install_requires=[
'uvicorn',
'loguru-logging-intercept'
],
)