-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (62 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (62 loc) · 1.5 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cks-runtime"
dynamic = ["version"]
description = "Canonical Runtime for the Canonical Knowledge Structure ecosystem"
readme = "README.md"
authors = [
{ name = "Vladyslav Hruznov" }
]
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"cks-core>=1.21.0",
"numpy>=1.26",
]
keywords = [
"canonical-knowledge-structure",
"runtime",
"knowledge-runtime",
"transactions",
"sessions",
"versioning",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/Deus-corp/cks-runtime"
Repository = "https://github.com/Deus-corp/cks-runtime"
Issues = "https://github.com/Deus-corp/cks-runtime/issues"
[tool.setuptools.dynamic]
version = {attr = "cks_runtime._version.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = [
"cks_runtime*",
"cks_runtime_plugins*",
]
[project.optional-dependencies]
postgres = [
"psycopg[binary,pool]>=3.1",
"pgvector>=0.3.0",
]
fastembed = [
"fastembed>=0.3",
]
gossip = [
"aiohttp>=3.9",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"mypy>=1.0",
"requests>=2.0",
]