-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (37 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
46 lines (37 loc) · 1.22 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
[project]
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/#declaring-project-metadata
name = "via-uv"
version = "0.1.0"
description = "environment via uv"
license = { text = "Apache-2.0 OR MIT" }
readme = "README.md"
requires-python = ">=3.8"
# dynamic = [] # TODO
authors = ["Your Name <you@example.com>", "My Name"]
maintainers = [
"John Smith <johnsmith@example.org>",
"Jane Smith <janesmith@example.org>",
]
keywords = ["packaging", "pipenv", "test"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Classifier: Development Status :: 4 - Beta",
"Intended Audience :: Developers"
]
dependencies = [
'toml'
]
optional-dependencies = { 'foo' = ['ddt'] }
# entry-point = {} # TODO
# gui-scripts = {} # TODO
# scripts = {} # TODO
[project.urls]
homepage = "https://oss.acme.org/my-project/"
repository = "https://oss.acme.org/my-project.git"
documentation = "https://oss.acme.org/my-project/docs/"
"Bug Tracker" = "https://oss.acme.org/my-project/bugs/"
"Funding" = "https://oss.acme.org/my-project/funding/"
"Change log" = "https://oss.acme.org/my-project/changelog/"
[tool.uv]
# https://docs.astral.sh/uv/reference/settings/