-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 891 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
[project]
authors = [{ name = "Javier Zazo", email = "javierzazo@microsoft.com" }]
license = { text = "MIT License" }
requires-python = ">=3.12"
name = "cookie-doh"
version = "0.0.25"
description = ""
readme = "README.md"
dependencies = []
[dependency-groups]
dev = ["codespell", "coverage", "ipykernel", "jinja2", "ruff", "pyright", "pytest", "pytest-cov"]
docs = [
"mkdocs",
"mkdocs-awesome-pages-plugin",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-material",
"mkdocs-video",
"mkdocstrings",
"mkdocstrings-python",
"pymdown-extensions",
]
[project.urls]
repository = "https://github.com/microsoft/cookie-doh"
documentation = "https://microsoft.github.io/cookie-doh"
[tool.uv]
default-groups = ["dev", "docs"]
[tool.hatch.build.targets.wheel]
packages = ["src/cookie"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"