-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.82 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "ptcna"
version = "0.1.1"
description = "Prime Tensor Circled Neural Architecture — one architecture, four layers (neural/circle/seed/core). Consolidates pcna, pcta, pcsa."
readme = "README.md"
license = "MPL-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Erin Patrick Spencer", email = "wayseer@interdependentway.org" },
]
requires-python = ">=3.10"
# Neural layer uses numpy; circle/seed/core layers are stdlib-only.
dependencies = [
"numpy>=1.21",
"ucns @ git+https://github.com/The-Interdependency/ucns.git@b7b6f35cce69c273860923489a1c8b5372d14eb0",
]
keywords = [
"prime",
"tensor",
"neural-architecture",
"back-propagation",
"auditing",
"timing",
"fick",
"unit-circle",
"interdependency",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "build", "twine"]
[project.urls]
Homepage = "https://github.com/The-Interdependency/ptcna"
Repository = "https://github.com/The-Interdependency/ptcna"
"Bug Tracker" = "https://github.com/The-Interdependency/ptcna/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["ptcna*"]
# Ship the four layer packages; keep the per-layer test suites out of the wheel.
exclude = ["*.tests", "*.tests.*"]
[tool.setuptools.package-data]
ptcna = ["data/*.json"]
[tool.pytest.ini_options]
testpaths = ["ptcna"]