-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1.06 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cloudblocks"
version = "0.11.0"
description = "Visual cloud learning tool for beginners — guided templates, architecture patterns, and Terraform starter export"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [{name = "yeongseon"}]
keywords = ["cloud-architecture", "learning-tool", "terraform", "infrastructure-as-code", "visual-builder", "beginners"]
[project.urls]
Homepage = "https://github.com/yeongseon/cloudblocks"
Repository = "https://github.com/yeongseon/cloudblocks"
Issues = "https://github.com/yeongseon/cloudblocks/issues"
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["apps/api"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["apps/api/tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true