-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 876 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "koi-net-hackmd-sensor-node"
version = "0.1.0"
description = "KOI-net HackMD sensor node for content ingestion"
authors = [
{name = "Luke Miller", email = "luke@block.science"},
{name = "Sayer Tindall", email = "sayer@block.science"}
]
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dependencies = [
"koi-net~=2.0",
"colorama>=0.4.6",
"rid_lib>=3.2.14",
"rich>=14.0.0",
"httpx>=0.28.1",
"pydantic>=2.10.6",
"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"]
[project.urls]
Homepage = "https://github.com/BlockScience/koi-net-hackmd-sensor-node"