-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyrefdev"
description = "The entry point to Python reference docs"
authors = [
{name = "Mango Umbrella LLC", email = "hi@mangoumbrella.com"},
]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Free Threading",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
]
keywords = [
"documentation",
]
requires-python = ">=3.10"
dependencies = [
"cyclopts>=3.19.0",
"jinja2>=3.1.6",
"packaging>=25.0",
"yib>=0.3.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pyref.dev"
Source = "https://github.com/mangoumbrella/pyref.dev"
Changelog = "https://github.com/mangoumbrella/pyref.dev/blob/main/CHANGELOG.md"
[project.optional-dependencies]
server = [
"uvicorn[standard]>=0.34.2,<1",
"fastapi>=0.115.12,<1",
]
indexer = [
"rich>=14.0.0",
"Beautifulsoup4>=4.13.4",
]
[project.scripts]
pyrefdev = "pyrefdev.__main__:app"
pyrefdev-indexer = "pyrefdev.indexer.__main__:app"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/pyrefdev/_version.py"
template = '''
version = "{version}"
'''
[dependency-groups]
dev = [
"pytest>=8.4.1",
"prek>=0.3.0",
"ruff>=0.14.2",
"uv>=0.9.8",
]