forked from A-Universum/SemanticDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.4 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "semantic-db"
version = "1.0.0"
description = "The Living Ontological Memory of the Λ-Universum — an executable, ethically grounded knowledge graph for human-AI co-creation."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
]
maintainers = [
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Philosophy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Natural Language :: Russian"
]
keywords = [
"ontological-memory", "knowledge-graph", "human-ai-collaboration",
"FAIR-CARE", "Habeas-Weights", "NIGC", "LOGOS-k", "lambda-universe"
]
dependencies = [
"PyYAML>=6.0",
"blake3>=0.3.0; extra == 'crypto'"
]
requires-python = ">=3.9"
[project.optional-dependencies]
crypto = ["blake3>=0.3.0"]
dev = ["pytest>=7.0", "black", "mypy"]
cli = ["click>=8.0"]
[project.urls]
Homepage = "https://a-universum.com"
Documentation = "https://github.com/a-universum/logos-k"
Repository = "https://github.com/a-universum/SemanticDB"
"Zenodo Archive" = "#"
"OSF Project" = "#"
[project.scripts]
# Основной CLI для LOGOS-κ, включающий SemanticDB
logos-k = "logos_k.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["semantic_db*"]
namespaces = false
[tool.setuptools.package-data]
semantic_db = ["py.typed"]
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--strict-markers --tb=short"
[tool.mypy]
files = "semantic_db"
python_version = "3.9"
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true