-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpyproject.toml
59 lines (47 loc) · 1.27 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
56
57
58
59
[project]
name = "patool"
version = "4.0.0"
requires-python = ">=3.11"
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"
# work around https://github.com/astral-sh/uv/issues/9513
[tool.setuptools]
license-files = []
[project.optional-dependencies]
# optional features
argcompletion = [
'argcomplete==3.5.3',
]
# these modules are only needed for development
[tool.uv]
dev-dependencies = [
# for using setuptools.setup() in setup.py
"setuptools==75.8.0",
# for testing
"pytest==8.3.4",
# 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.9.7",
# for python type checking
"pytype==2024.10.11",
# for generating a Python .whl file
"wheel==0.45.1",
# for generating the web page
"sphinx==8.2.0",
"myst-parser==4.0.1",
# 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.9"
uv_version_dev = "0.6.2"