๐Ÿ“ฆ astral-sh / rye

๐Ÿ“„ pyproject.toml ยท 30 lines
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[project]
name = "rye-dev"
version = "1.0.0"
description = "Workspace for rye development"
authors = [{ name = "Armin Ronacher", email = "armin.ronacher@active-4.com" }]
dependencies = [
    "mkdocs~=1.4.3",
    "mkdocs-material~=9.1.12",
    "pymdown-extensions~=9.11",
    "mdx-gh-links~=0.3",
    "mkdocs-simple-hooks~=0.1.5",
    "mkdocs-version-annotations~=1.0.0",
    "mkdocs-include-markdown-plugin~=4.0.4",
]
readme = "README.md"
requires-python = ">= 3.8"

[tool.rye]
managed = true
virtual = true

[tool.rye.scripts]
serve-docs = "mkdocs serve"

[tool.rye.workspace]
members = ["rye-devtools"]

[tool.pytest.ini_options]
addopts = "--ignore target"