-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (89 loc) · 2.25 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
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "multi-theory-consciousness"
version = "0.2.0"
description = "A research framework implementing seven theories of consciousness as interacting computational modules"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{ name = "Calvin Devereaux", email = "calvin.devereaux+mtc@gmail.com" },
]
keywords = [
"consciousness",
"neuroscience",
"global-workspace-theory",
"attention-schema",
"higher-order-thought",
"free-energy-principle",
"integrated-information",
"active-inference",
"spiking-neural-networks",
"computational-neuroscience",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"python-dotenv>=1.0",
]
[project.optional-dependencies]
neural = [
"snntorch>=0.7",
"torch>=2.0",
"reservoirpy>=0.4",
]
fep = [
"inferactively-pymdp>=0.0.7",
]
databases = [
"redis>=5.0",
"motor>=3.0",
"pymongo>=4.0",
"neo4j>=5.0",
"qdrant-client>=1.7",
"asyncpg>=0.29",
"sqlalchemy>=2.0",
]
assessment = [
"pymc>=5.0",
"anthropic>=0.50",
"requests>=2.28",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"black>=23.0",
"flake8>=6.0",
]
all = [
"multi-theory-consciousness[neural,fep,databases,assessment,dev]",
]
[project.urls]
Repository = "https://github.com/WhiteLotusLA/multi-theory-consciousness"
Documentation = "https://github.com/WhiteLotusLA/multi-theory-consciousness/tree/master/docs"
# Note: CLI entry point removed -- run assessment via:
# python scripts/run_assessment.py --full --report
[tool.setuptools.packages.find]
include = ["mtc*"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]