diff --git a/setup.cfg b/setup.cfg index 2d7088e..b5d31c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ packages = context_logger strict = True [flake8] -exclude = build,dist +exclude = build,dist,.eggs,*.egg-info max-line-length = 120 max-complexity = 10 count = True diff --git a/setup.py b/setup.py index 9275dad..58970e5 100644 --- a/setup.py +++ b/setup.py @@ -2,11 +2,12 @@ setup( name='python-context-logger', - version='1.2.1', description='Contextual structured logging library for Python', author='Ferenc Nandor Janky & Attila Gombos', author_email='info@effective-range.com', packages=['context_logger'], package_data={'context_logger': ['py.typed']}, + use_scm_version=True, + setup_requires=["setuptools_scm"], install_requires=['structlog'] )