forked from agiresearch/AIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (31 loc) · 1.02 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-requirements-txt"]
[project]
dynamic = ["dependencies"]
description = "AIOS: LLM Agent Operating System"
keywords = ["llm", "os"]
license = {file = "LICENSE"}
name = "aios-core"
readme = "README.md"
requires-python = ">=3.9"
version = "0.0.1.beta2"
classifiers = [
"Development Status :: 3 - Beta",
"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/AIOS"
Repository = "https://github.com/agiresearch/AIOS.git"
[tool.hatch.build]
exclude = ["build", "dist", "__pycache__/", ".pytest_cache/"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.wheel]
packages = ["aios"]