-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
47 lines (38 loc) · 1 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
[metadata]
name = quicklogging
version = 0.4
description = logging made easy, can convert print() calls into logs without changing code
long_description = file: pypidesc.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
author = "Feth AREZKI (majerti)"
author_email = "[email protected]"
project_url = "https://github.com/majerteam/quicklogging"
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Topic :: System :: Logging
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages =
quicklogging
[options.extras_require]
test =
pytest-runner
pytest
pytest-cov
six
stringimporter>=0.1.3
[bdist_wheel]
universal = 1
[tool:pytest]
addopts =
--strict-markers
--maxfail=2
--cov=quicklogging --cov-report=term-missing
--capture=no
-p no:logging
[aliases]
test=pytest