-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 909 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
45
46
47
48
49
50
51
52
53
[project]
name = "supervisor-react"
version = "0.8.0"
description = "A web interface for supervisor"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Cyril Jouve", email = "jv.cyril@gmail.com" },
]
dependencies = [
"aiofiles",
"httpx",
"starlette",
"uvicorn",
]
[project.urls]
source = "https://github.com/jouve/supervisor-react"
[project.scripts]
supervisor-react = "supervisor_react:main"
[dependency-groups]
dev = [
"ruff",
"supervisor",
"ty",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"supervisor_react",
]
artifacts = [
"statics",
]
[tool.hatch.build.targets.wheel]
artifacts = [
"statics",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["ALL"]
extend-ignore = ["ANN201", "COM812", "D", "ISC001"]