-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (37 loc) · 984 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
40
41
42
43
44
45
46
[project]
name = "sdcli"
version = "2.2.0"
description = "A command line tool for automating important grunt work."
authors = [
{name = "Elias Gabriel", email = "me@eliasfgabriel.com"},
]
requires-python = ">=3.7,<4.0"
dependencies = [
"typer[all]<1.0.0,>=0.3.2",
"tqdm<5.0.0,>=4.64.0",
"requests<3.0.0,>=2.28.1",
"cachecontrol<1.0.0,>=0.12.11",
]
[project.urls]
homepage = "https://www.metabronx.com/"
documentation = "https://github.com/metabronx/sdcli"
repository = "https://github.com/metabronx/sdcli"
[project.scripts]
sdcli = "sdcli.__main__:app"
[tool.pdm.dev-dependencies]
dev = [
"typer-cli>=0.0.13",
"pytest>=7.4.0",
"requests-mock>=1.11.0",
"pytest-cov>=4.1.0",
]
[tool.pdm.scripts]
docs = "typer sdcli.main utils docs --name sdcli --output USAGE.md"
[tool.mypy]
strict = true
[tool.pytest.ini_options]
addopts = "--capture=fd -vv"
testpaths = [ "tests" ]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"