-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.14 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
[project]
name = "foldermerge"
version = "0.4.0"
description = "Default template for PDM package"
authors = [
{ name = "JostTim", email = "[email protected]" },
]
dependencies = ["pandas>=2.1.4", "tqdm>=4.66.1"]
requires-python = ">=3.12, <3.13"
readme = "README.md"
license = { text = "MIT" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.optional-dependencies]
gui = ["flask>=3.0.2"]
[project.scripts]
foldermerge = "foldermerge:console"
[tool.pytest.ini_options]
addopts = "--pdbcls=IPython.terminal.debugger:TerminalPdb --cov-report html --cov --junitxml=pytest_results.xml"
testpaths = ["tests"]
[tool.pdm]
includes = [
"src/foldermerge/*.py", # Include all Python files in src/my_package
"src/foldermerge/*.html", # include files for the gui
"src/foldermerge/*.css",
"src/foldermerge/*.js",
"LICENSE", # Include the LICENSE file
]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.4.4",
"tox-pdm>=0.7.2",
"pytest-cov>=4.1.0",
"hypothesis>=6.97.4",
"ipdb>=0.13.13",
"jupyter>=1.0.0",
"line-profiler>=4.1.2",
]