mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
47e6e155b9
updated version to 20.0.1 fix demoapp_release_config fix demeapp_release_config (cherry-pick from e2647d8a317018b940da1390fd63f66461ac907b) Fix max sized of DivFrameLayout with match parent child (cherry-pick from 23fb83533a5e4aeb7f3e5ae1ad3831331bb2c7bc) Fix border drawing in animations (cherry-pick from 5c74b7c45d59566c6b0ffed5e007b9623f5e84a7) Cherry pickadd build config for demoapp release Check view is laid out before draw it to bitmap (cherry-pick from 8e610704677942792289bd1c0e58ddc0a0fd1887) Request layout after weight updating (cherry-pick from c6f488dd9b2c7f628de152672a73a95c98ce191d) added dns requirement into github task (cherry-pick from c6bcc5d6fdc7f1fa1ea2e09351c7a5ab622c4824) update changelog update changelog (cherry-pick from 7a50c5c8acc5288eb9123ef5e8d430d5148f0494) update api dump update div.api (cherry-pick from 0563c1635b4695e6a5c9cfa45d0be620056b2914) updated version to 20.0.0 (cherry-pick from 8894effabe2379433255ef389125c6bea46b74ae)
62 lines
1.7 KiB
TOML
62 lines
1.7 KiB
TOML
[tool.poetry]
|
|
name = "pydivkit"
|
|
version = "21.1.0"
|
|
description = "DivKit python library"
|
|
readme = "README.md"
|
|
repository = "https://github.com/divkit/divkit/tree/main/json-builder/python"
|
|
keywords = ["divkit", "sdk"]
|
|
authors = [
|
|
"Vladislav Bakaev <bakaev-vlad@yandex-team.ru>",
|
|
"Dmitry Orlov <mosquito@yandex-team.ru>"
|
|
]
|
|
include = ["pydivkit/div/*", "pydivkit/py.typed"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Education",
|
|
"Intended Audience :: Information Technology",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Natural Language :: Russian",
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Scientific/Engineering :: Visualization",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: User Interfaces",
|
|
"Topic :: Software Development",
|
|
"Typing :: Typed",
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
autoflake = "^1.7.7"
|
|
gray = "^0.10.2"
|
|
mypy = "^0.931"
|
|
pre-commit = "^2.17.0"
|
|
pylama = "^8.3.0"
|
|
pytest = "^7.0.1"
|
|
pytest-asyncio = "^0.18.1"
|
|
teamcity-messages = "^1.31"
|
|
yesqa = "^1.3.0"
|
|
isort = "^5.10.1"
|
|
|
|
[tool.mypy]
|
|
cache_dir = "/dev/null"
|
|
strict = true
|
|
ignore_missing_imports = true
|
|
allow_subclassing_any = true
|
|
allow_untyped_calls = true
|
|
pretty = true
|
|
show_error_codes = true
|
|
implicit_reexport = true
|
|
allow_untyped_decorators = true
|
|
warn_return_any = false
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|