forked from async-worker/aiologger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (50 loc) · 1.48 KB
/
setup.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[metadata]
name = aiologger
version = 0.7.0
description = Asynchronous logging for python and asyncio
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://github.com/b2wdigital/aiologger
project_urls =
Documentation=https://aiologger.readthedocs.io/en/latest/
Code=https://github.com/b2wdigital/aiologger
Issue tracker=https://github.com/b2wdigital/aiologger/issues
author = Diogo Magalhães Martins
author_email = [email protected]
keywords = logging json log output
classifiers =
Development Status :: 4 - Beta
Framework :: AsyncIO
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: Unix
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries
Topic :: System :: Logging
[options]
packages = find:
python_requires = >=3.7
tests_require =
pytest
pytest-cov
codecov
asynctest==0.12.0
freezegun==0.3.10
mypy==0.630
black==18.9b0
aiofiles==0.4.0
uvloop==0.14.0
orjson==3.4.0
setup_requires = setuptools>=38.6.0
[options.packages.find]
exclude = *test*
[options.extras_require]
aiofiles = aiofiles==0.4.0