-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.17 KB
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
[project]
authors = [
{ name = "zhuming", email = "thirdgerb@gmail.com" },
{ name = "Nile Zhou", email = "nilezhou123@gmail.com" },
]
license = { text = "MIT" }
dependencies = [
"ghostos",
]
requires-python = ">=3.10"
name = "ghostos-monorepo"
version = "0.4.0"
description = "A framework offers an operating system simulator with a Python Code Interface for AI Agents"
readme = "README.md"
[project.urls]
Homepage = "https://github.com/ghost-in-moss/GhostOS"
Repository = "https://github.com/ghost-in-moss/GhostOS"
Documentation = "https://ghost-in-moss.github.io/GhostOS/#/en/"
Issues = "https://github.com/ghost-in-moss/GhostOS/issues"
[project.scripts]
ghostos = "ghostos.scripts.cli:main"
[dependency-groups]
dev = [
"pytest<9.0.0,>=8.1.1",
"mypy<2.0.0,>=1.13.0",
]
[tool.uv.sources]
ghostos-container = { workspace = true }
ghostos-common = { workspace = true }
ghostos-moss = { workspace = true }
ghostos = { workspace = true }
[tool.uv.workspace]
members = ["libs/*"]
[tool.pdm.dev-dependencies]
dev = [
"pytest<9.0.0,>=8.1.1",
"mypy<2.0.0,>=1.13.0",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"