-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 979 Bytes
/
pyproject.toml
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
[build-system]
requires = [ "setuptools>=46.4.0", "wheel>=0.36.2"]
build-backend = "setuptools.build_meta"
[project]
name = "acme_hello_api"
version = "0.0.2"
description = "Example Hello World API"
readme = "README.md"
classifiers = [ "Programming Language :: Python :: 3.12", ]
dependencies = [ "python-dotenv", "fastapi[standard]" ]
[[project.authors]]
email = "[email protected]"
# [project.scripts]
[project.urls]
homepage = "https://example.com"
repository = "https://example.com"
[project.optional-dependencies]
dev = [
"pytest", # for testing
"uv", # for venv
"mkdocs", # for documentation
"mkdocs-material", # theme for mkdocs
"mkdocstrings[python]", # mkdocs plugin to generate API docs from sources
"jupyterlab", # for jupyter notebooks
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["acme_hello_api"]
# https://github.com/astral-sh/uv/issues/9513#issuecomment-2519527822
license-files = []
# [tool.setuptools.package-data]