-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (67 loc) · 1.83 KB
/
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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "auto-graph-of-thoughts"
dynamic = ["version"]
dependencies = [
"pure-graph-of-thoughts>=1.0.0,<2.0.0",
"gymnasium>=0.29.1,<1.0.0",
"numpy>=1.26.4,<2.0.0"
]
requires-python = ">=3.11"
authors = [
{ name = "Manuel Riesen", email = "manuelnoah.riesen@students.bfh.ch" }
]
maintainers = [
{ name = "Manuel Riesen", email = "manuel.riesen0@gmail.com" }
]
description = "Automated Graph of Thoughts"
readme = "README.md"
license-files = { paths = ["LICENSE"] }
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.optional-dependencies]
notebooks = [
"jupyter>=1.1.0,<2.0.0",
"stable-baselines3>=2.2.1,<3.0.0",
"tensorboard>=2.16.2,<3.0.0",
"plotly>=5.20.0,<6.0.0",
"pandas>=2.2.1,<3.0.0",
"pure-graph-of-thoughts[visualization,visualization-dot]>=1.1.0,<2.0.0"
]
[tool.hatch.version]
path = "__about__.py"
[tool.coverage.paths]
auto_graph_of_thoughts = ["auto_graph_of_thoughts"]
[tool.hatch.envs.types]
dependencies = [
"mypy>=1.8.0,<2.0.0"
]
[tool.hatch.envs.types.scripts]
check = "mypy --install-types --non-interactive {args:auto_graph_of_thoughts}"
[tool.hatch.build.targets.sdist]
exclude = [
".github/",
".idea/"
]
[tool.hatch.build.targets.wheel]
packages = [
"auto_graph_of_thoughts"
]
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
disallow_any_unimported = true
disallow_any_generics = true
warn_redundant_casts = true
warn_no_return = true
warn_unreachable = true
warn_return_any = true
[project.urls]
Repository = "https://github.com/mriesen/auto-graph-of-thoughts.git"