forked from rhymiz/python-motion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 712 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 712 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
[tool.poetry]
name = "python-motion"
version = "0.2.0"
description = ""
authors = ["Lemuel Boyce <lemuel@vokality.com>"]
readme = "README.md"
license = "MIT"
packages = [{ "include" = "motion", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.0"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
ruff = "*"
ruff-lsp = "*"
pytest = "*"
[tool.ruff]
line-length = 79
indent-width = 4
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"