-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 857 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "turnkey-oss"
version = "0.1.0"
description = "Turnkey Python SDK - monorepo workspace"
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"mypy>=1.8.0",
"types-requests>=2.31.0",
"ruff>=0.1.0",
"pytest>=7.0.0",
]
[tool.mypy]
python_version = "3.10"
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
check_untyped_defs = false
strict_optional = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = false
warn_no_return = true
follow_imports = "silent"
ignore_missing_imports = true
# Exclude patterns
exclude = [
"^venv/",
"^build/",
"^dist/",
"^\\.eggs/",
]
[tool.setuptools.packages.find]
exclude = ["schema*", "codegen*", "changesets*"]