forked from jfmlima/shelly-manager
-
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) · 745 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 745 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shelly-manager-api"
version = "0.1.0"
description = "REST API for Shelly Manager"
authors = [{name = "Jorge Lima", email = "jorgefilipemlima@gmail.com"}]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"shelly-manager-core", # Local package dependency
"litestar[standard]==2.16.0",
"uvicorn[standard]==0.35.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"black",
"ruff",
"mypy",
]
[tool.uv.sources]
shelly-manager-core = { workspace = true }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"