-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.95 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "interdependent-lib"
version = "0.1.5"
description = "Unified meta-package combining the four-letter and five-letter acronym libraries of The Interdependency"
readme = "README.md"
license = { text = "MPL-2.0" }
authors = [
{ name = "Erin Patrick Spencer", email = "wayseer@interdependentway.org" }
]
requires-python = ">=3.11"
keywords = ["prime", "tensor", "encryption", "neural", "unit-circle", "multi-model", "ai", "orchestration"]
dependencies = []
[project.optional-dependencies]
# Standalone libraries
pcea = ["pcea>=0.1.0"]
ucns = ["ucns @ git+https://github.com/The-Interdependency/ucns.git@b7b6f35cce69c273860923489a1c8b5372d14eb0"]
# Five-letter acronym libraries
aimmh = ["aimmh-lib>=1.1.0"]
# Prime-tensor stack: the former pcna / pcta / pcsa repos are consolidated into
# the single ptcna package (neural/circle/seed/core), now published to PyPI.
# See docs/naming-migration.md and docs/dependency-policy.md.
ptcna = [
"ucns @ git+https://github.com/The-Interdependency/ucns.git@b7b6f35cce69c273860923489a1c8b5372d14eb0",
"ptcna @ git+https://github.com/The-Interdependency/ptcna.git@c5fa9a599498f19c8345f2790a0636542dfbc6a1",
]
# Install all packaged libraries at once
all = [
"pcea>=0.1.0",
"ucns @ git+https://github.com/The-Interdependency/ucns.git@b7b6f35cce69c273860923489a1c8b5372d14eb0",
"aimmh-lib>=1.1.0",
"ptcna @ git+https://github.com/The-Interdependency/ptcna.git@c5fa9a599498f19c8345f2790a0636542dfbc6a1",
]
# Developer tooling
dev = [
"pytest>=8.0",
"build",
"twine",
]
[project.urls]
Homepage = "https://interdependentway.org"
Repository = "https://github.com/The-Interdependency/interdependent-lib"
"Bug Tracker" = "https://github.com/The-Interdependency/interdependent-lib/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["interdependent_lib*"]
[tool.pytest.ini_options]
testpaths = ["tests"]