-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 934 Bytes
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
[project]
name = "omoospace"
version = "0.2.6"
description = ""
authors = [{ name = "manan", email = "icrdr2010@outlook.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
dependencies = [
"ruamel-yaml>=0.17.35,<0.18",
"pypinyin>=0.49.0,<0.50",
"nutree>=0.5.1,<0.6",
]
[project.optional-dependencies]
cli = [
"inquirerpy>=0.3.4",
"typer>=0.24.1",
]
[dependency-groups]
dev = [
"ipykernel>=6.25.2,<7",
"pytest>=7.4.2,<8",
"pytest-dependency>=0.5.1,<0.6",
"mkdocs-material>=9.4.6,<10",
"mkdocstrings[python]>=0.23.0,<0.24",
"mkdocs-click>=0.8.1,<0.9",
"autopep8>=2.0.4,<3",
"pytest-cov>=4.1.0,<5",
"mike>=2.0.0,<3",
"pip>=25.3",
"mkdocs-static-i18n[material]>=1.3.1",
"mkdocs>=1.5.3",
]
[project.scripts]
omoospace = "omoospace.commands:app"
omoos = "omoospace.commands:app"
[build-system]
requires = ["uv_build>=0.9.18,<0.10.0"]
build-backend = "uv_build"