-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 957 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "pyhera"
version = "0.1.0"
description = "Heuristic Reasoning Agent – A framework for creating agents from models, and running and managing the agents."
authors = ["John Erling Blad <[email protected]>"]
readme = "README.md"
# packages = [{}]
repository = "https://github.com/jeblad/heuristic-reasoning-agent"
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 1 - Planning",
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
[tool.poetry.dependencies]
cliff = "*"
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"