-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 886 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "koi-net-github-sensor-node"
version = "0.1.0"
description = "GitHub sensor node for KOI-net"
authors = [
{name = "Luke Miller", email = "luke@block.science"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"httpx>=0.28.1",
"koi-net~=1.2.5",
"colorama>=0.4.6",
"rid_lib>=3.2.14",
"pydantic>=2.10.6",
"structlog>=24.4.0",
"fastapi==0.121.2",
"starlette==0.49.3",
"uvicorn==0.38.0"
]
[project.optional-dependencies]
dev = ["twine>=6.0", "build", "pytest>=7.0", "pytest-mock>=3.10"]
[tool.pyright]
venvPath = "."
venv = ".venv"
include = ["src"]
exclude = ["**/__pycache__"]
pythonVersion = "3.10"
typeCheckingMode = "basic"
reportMissingImports = true