Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "sportradar-datacore-api"
version = "0.1.0"
version = "0.1.1"
description = "A Python wrapper for accessing and processing Sportradar DataCore data."
readme = "README.md"
requires-python = ">=3.12"
Expand Down Expand Up @@ -48,7 +48,7 @@ Repository = "https://github.com/mad4ms/SportradarDatacoreAPI"

[tool.setuptools.packages.find]
where = ["src"]
exclude = ["_vendor*", "_vendor.*"] # do not package vendored client
include = ["sportradar_datacore_api*", "_vendor*"]

# --- build ---
[build-system]
Expand Down Expand Up @@ -80,11 +80,18 @@ testpaths = ["test"]
[tool.mypy]
python_version = "3.12"
plugins = ["pydantic.mypy"]

mypy_path = ["src", "src/_vendor"]
exclude = 'src/_vendor/'

exclude = ["^src/_vendor/"]

warn_unused_ignores = true
warn_redundant_casts = true
strict_optional = true
check_untyped_defs = true
disallow_untyped_defs = true

[[tool.mypy.overrides]]
module = "datacore_client.*"
follow_imports = "skip"
ignore_errors = true
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading