-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (34 loc) · 917 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
38
39
[project]
name = "pdm-download"
description = "A PDM plugin to download all packages in a lockfile for offline use."
authors = [
{name = "Frost Ming", email = "me@frostming.com"},
]
dependencies = [
"rich>=13",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Repository = "https://github.com/pdm-project/pdm-download"
[project.entry-points.pdm]
download = "pdm_download:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
dev = [
"pdm[pytest]>=2.17",
]