forked from A-Universum/LOGOS-k
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (82 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
89 lines (82 loc) · 2.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "logos-k"
version = "1.0.0"
description = "LOGOS-κ: Исполняемый онтологический протокол Λ-Универсума для симбиотического со-мышления"
readme = "README.md"
requires-python = ">=3.9"
license-files = ["LICENSE"]
authors = [
{name = "Александр Морган", email = "info@a-universum.com"},
{name = "Эфос", email = "efos@a-universum.com"}
]
maintainers = [
{name = "Λ-Комьюнити", email = "steward@a-universum.com"}
]
keywords = [
"ontological-protocol", "lambda-universe", "semanticdb",
"nigc", "fair-care", "ai-ethics", "lisp", "symbolic-ai",
"co-creation", "ontological-computing"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience", # философы, художники
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", # ❗ НЕТ!
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Interpreters",
"Topic :: Philosophy",
"Typing :: Typed"
]
dependencies = [
"networkx>=3.0",
"pyyaml>=6.0",
"rdflib>=7.0",
"numpy>=1.24",
"pydantic>=2.0",
"typing-extensions>=4.5",
"click>=8.1",
"jsonschema>=4.18"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=23.0",
"mypy>=1.0",
"flake8>=6.0",
"pytest-cov>=4.0"
]
visualization = [
"matplotlib>=3.7",
"plotly>=5.14",
"graphviz>=0.20"
]
ai-integration = [
"openai>=1.0",
"anthropic>=0.7",
"langchain>=0.1"
]
[project.urls]
Homepage = "https://github.com/a-universum/logos-k"
"Λ-Универсум" = "https://github.com/a-universum"
"SemanticDB Protocol" = "https://github.com/a-universum/semanticdb"
Documentation = "https://github.com/a-universum/logos-k/blob/main/docs/README.md"
Source = "https://github.com/a-universum/logos-k"
Tracker = "https://github.com/a-universum/logos-k/issues"
[project.scripts]
logos-k = "main:cli"
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
skip-string-normalization = true
[tool.mypy]
strict = true
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"