-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.01 KB
/
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
47
[project]
name = "tinkertown-technician"
version = "0.2.1"
description = "Tinkertown Technician -- Battlecry: Fix your Heartstone Deck Tracker"
readme = "README.md"
authors = [
{name = "Chris Wesseling", email = "[email protected]"},
]
dependencies = [
"requests",
"typer",
"watchdog",
"psutil~=5.8",
"toml~=0.10",
]
requires-python = ">=3.7"
dynamic = ["classifiers"]
license = {text = "GPL-3.0-or-later"}
dev-dependencies = [
"flake8",
"isort",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"setproctitle~=1.2",
]
[project.urls]
homepage = "https://github.com/CharString/tinkertown-technician"
[project.scripts]
ttt = "tinkertown.__main__:app"
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
[tool.pdm.scripts]
dev = {"shell" = "pdm install --dev && pdm run pre-commit install -t pre-commit && pdm run pre-commit install -t pre-push"}
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"