mirror of
https://github.com/kyegomez/OpenMythos.git
synced 2026-05-02 17:43:27 +02:00
78 lines
1.7 KiB
TOML
78 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.poetry]
|
|
name = "open-mythos"
|
|
version = "0.2.0"
|
|
description = "OpenMythos — open-source theoretical reconstruction of the Claude Mythos Recurrent-Depth Transformer architecture"
|
|
license = "MIT"
|
|
authors = ["Kye Gomez <kye@swarms.world>"]
|
|
homepage = "https://github.com/The-Swarm-Corporation/OpenMythos"
|
|
documentation = "https://github.com/The-Swarm-Corporation/OpenMythos/blob/main/docs/open_mythos.md"
|
|
readme = "README.md"
|
|
repository = "https://github.com/The-Swarm-Corporation/OpenMythos"
|
|
keywords = [
|
|
"artificial intelligence",
|
|
"deep learning",
|
|
"transformers",
|
|
"recurrent transformers",
|
|
"looped transformers",
|
|
"mixture of experts",
|
|
"multi-latent attention",
|
|
"grouped query attention",
|
|
"adaptive computation time",
|
|
"recurrent depth transformer",
|
|
"LTI stability",
|
|
"inference-time scaling",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Science/Research",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3.10",
|
|
]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10,<4.0"
|
|
torch = "*"
|
|
|
|
|
|
[tool.poetry.group.lint.dependencies]
|
|
black = ">=23.1,<27.0"
|
|
ruff = ">=0.5.1,<0.15.9"
|
|
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
pytest = ">=8.1.1,<10.0.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "*"
|
|
ruff = "*"
|
|
pytest = "*"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
|
|
[tool.black]
|
|
target-version = ["py310"]
|
|
line-length = 88
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| docs
|
|
)/
|
|
'''
|