-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (36 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
44 lines (36 loc) · 931 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
43
44
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plane-sdk"
version = "0.2.7"
description = "Python SDK for Plane API"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Plane", email = "engineering@plane.so" }]
dependencies = ["requests>=2.31.0", "pydantic>=2.4.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["plane*"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["plane"]
[tool.pytest.ini_options]
addopts = "-q --ignore=tests/scripts"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_unused_ignores = true
warn_redundant_casts = true
disallow_untyped_defs = true
ignore_missing_imports = true