forked from agiresearch/OpenAGI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·42 lines (32 loc) · 1.12 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-requirements-txt"]
[project]
dynamic = ["dependencies"]
description = "OpenAGI: Package for AI Agent Creation"
keywords = ["llm", "agi"]
license = {file = "LICENSE"}
name = "pyopenagi"
readme = "README.md"
requires-python = ">=3.9"
version = "0.0.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/agiresearch/OpenAGI"
Repository = "https://github.com/agiresearch/OpenAGI.git"
"Tools Docs" = "https://github.com/agiresearch/OpenAGI/tools.md"
[tool.hatch.build]
exclude = ["research/", "pyopenagi.egg-info/", "dist", "__pycache__/", ".pytest_cache/"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
packages = ["pyopenagi"]