-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (38 loc) · 1.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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "prism-agi"
version = "1.0.0"
description = "PRISM — Photonic Recursive Intelligence with Synaptic Memory. Coherent IQ fiber NN, recursive meta-prompt, 4 production telecom classifiers at 100% accuracy."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = ["numpy>=1.24"]
keywords = [
"fiber optics", "optical neural network", "photonic computing",
"coherent detection", "telecom AI", "recursive AGI", "meta-prompt",
"WDM", "DCF", "homodyne", "modulation recognition"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.scripts]
fiber-agi = "fiber_agi.main:main"
fiber-agi-demo = "fiber_agi.use_cases:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["fiber_agi*"]
[tool.pytest.ini_options]
testpaths = ["tests"]