2015-08-11 21:49:38 +02:00
|
|
|
[wheel]
|
|
|
|
universal = 1
|
|
|
|
|
2018-08-29 15:39:44 +02:00
|
|
|
[metadata]
|
2018-08-29 15:49:52 +02:00
|
|
|
license_file = LICENSE.dual
|
2018-08-29 15:39:44 +02:00
|
|
|
|
2015-08-14 21:30:30 +02:00
|
|
|
[build_sphinx]
|
|
|
|
source-dir = docs/source
|
|
|
|
build-dir = docs/build
|
|
|
|
all_files = 1
|
|
|
|
|
|
|
|
[upload_sphinx]
|
2015-08-11 21:49:38 +02:00
|
|
|
upload-dir = docs/build/html
|
2016-04-28 15:03:43 +02:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length = 99
|
2019-10-14 10:10:51 +02:00
|
|
|
ignore = W503, W605
|
|
|
|
exclude = setup.py, docs/source/conf.py
|
2016-05-15 02:52:35 +02:00
|
|
|
|
|
|
|
[yapf]
|
|
|
|
based_on_style = google
|
2016-05-22 18:26:57 +02:00
|
|
|
split_before_logical_operator = True
|
2016-05-15 02:52:35 +02:00
|
|
|
column_limit = 99
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
[tool:pytest]
|
|
|
|
testpaths = tests
|
|
|
|
addopts = --no-success-flaky-report -rsxX
|
|
|
|
filterwarnings =
|
|
|
|
error
|
|
|
|
ignore::DeprecationWarning
|
2018-09-21 08:57:01 +02:00
|
|
|
ignore::telegram.utils.deprecate.TelegramDeprecationWarning
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
[coverage:run]
|
2017-09-01 08:44:45 +02:00
|
|
|
branch = True
|
2017-08-11 23:58:41 +02:00
|
|
|
source = telegram
|
2017-09-01 08:44:45 +02:00
|
|
|
parallel = True
|
|
|
|
concurrency = thread, multiprocessing
|
2017-08-11 23:58:41 +02:00
|
|
|
omit =
|
|
|
|
tests/
|
|
|
|
telegram/__main__.py
|
|
|
|
telegram/vendor/*
|
|
|
|
|