-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 802 Bytes
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
[tool.black]
line-length = 80
target-version = ["py312"]
include = '\.pyi?$'
[tool.vulture]
ignore_names = ["context", "*_mock"]
make_whitelist = true
min_confidence = 80
paths = ["travelmanager", "tests"]
sort_by_size = true
[tool.bandit.assert_used]
skips = ['*_test.py', '*test_*.py']
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_travelmanager"
version = "1.3.0"
authors = [{ name = "Johannes Eimer", email = "johannes.eimer@jep-dev.com" }]
description = "Python TravelManager"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ['Python', 'TravelManager']
dependencies = ["requests==2.32.3"]
[tool.hatch.build.targets.sdist]
include = ["travelmanager"]
[tool.hatch.build.targets.wheel]
packages = ["travelmanager"]