-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "orthos-framework"
version = "5.0.0"
description = "Orthogonal Recursive Hierarchical Optimization System"
readme = "README.md"
authors = [
{ name = "ORTHOS Development Team", email = "dev@orthos.ai" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["neuroscience", "kalman-filter", "hierarchical-learning", "active-inference", "orthogonal-processing"]
dependencies = [
"numpy>=1.20.0",
"matplotlib>=3.4.0",
"scipy>=1.7.0",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pytest>=6.0.0",
"black>=21.0",
"flake8>=3.9.0",
"isort>=5.0.0",
"mypy>=0.900",
]
torch = [
"torch>=2.0.0",
"torchvision>=0.15.0",
]
[project.urls]
"Homepage" = "https://github.com/kelaci/orthos"
"Bug Tracker" = "https://github.com/kelaci/orthos/issues"
[tool.setuptools]
packages = ["orthos"]