-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
48 lines (41 loc) · 1.19 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-requirements-txt"]
[project]
dynamic = ["dependencies"]
description = "Cerebrum: Agent SDK for AIOS"
keywords = ["llm", "agi", "cerebrum", "os", "aios"]
license = {file = "LICENSE"}
name = "aios-agent-sdk"
readme = "README.md"
requires-python = ">=3.10,<3.12"
version = "0.0.2"
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.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/agiresearch/Cerebrum"
Repository = "https://github.com/agiresearch/Cerebrum.git"
[tool.hatch.build]
include = ["cerebrum", "example"]
exclude = [
"*.egg-info/",
"dist",
"__pycache__/",
".pytest_cache/",
"example/",
"example/**",
]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[project.scripts]
run-agent = "cerebrum.example.run_agent:main"
[tool.hatch.build.targets.wheel]
packages = ["cerebrum"]
only-include = ["cerebrum"]