forked from tinyhumansai/neocortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 871 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tinyhumansai"
version = "0.5.5"
description = "Python SDK for Neocortex API by TinyHumans - ingest and delete memory with human context"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = ["httpx>=0.25"]
authors = [
{ name = "TinyHumans", email = "contact@tinyhumans.ai" },
]
[project.urls]
Homepage = "https://tinyhumans.ai"
Repository = "https://github.com/tinyhumansai/neocortex/tree/main/packages/sdk-python"
[dependency-groups]
dev = ["pytest", "pytest-asyncio", "mypy", "ruff"]
[project.scripts]
run-act-publish = "scripts.run_act_publish:main"
[tool.setuptools.packages.find]
include = ["tinyhumansai*", "scripts*"]
[tool.ruff]
line-length = 88
target-version = "py313"
src = ["tinyhumansai", "scripts"]