-
Notifications
You must be signed in to change notification settings - Fork 68
/
pyproject.toml
55 lines (44 loc) · 1.18 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
48
49
50
51
52
53
54
55
[project]
name = "patool"
version = "3.0.4"
requires-python = ">=3.10"
dependencies = []
# these values are set by setup.py
dynamic = ["scripts", "authors", "keywords", "classifiers", "urls", "license", "readme", "description"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
# these modules are only needed for development
[project.optional-dependencies]
# optional features
argcompletion = [
'argcomplete==3.5.1',
]
[tool.uv]
dev-dependencies = [
# for using setuptools.setup() in setup.py
"setuptools==75.3.0",
# for testing
"pytest==8.3.3",
# plugin to run tests in parallel
"pytest-xdist[psutil]==3.6.1",
# plugin to run tests in random order
"pytest-randomly==3.16.0",
# for python code linting
"ruff==0.7.3",
# for python type checking
"pytype==2024.10.11",
# for generating a Python .whl file
"wheel==0.45.0",
# for generating the web page
"sphinx==8.1.3",
"myst-parser==4.0.0",
# for upgrading the version number
"bump2version==1.0.1",
# test optional functionality
"patool[argcompletion]",
]
[tool.patool]
# pin versions of Python and uv for development
python_version_dev = "3.12.7"
uv_version_dev = "0.5.1"