-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.46 KB
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
60
61
62
63
64
65
66
[build-system]
build-backend = "uv_build"
requires = ["uv-build"]
[dependency-groups]
dev = [
# Keep pinned to ensure same version is used by `conda build` (see `conda.recipe/meta.yaml`).
"pytest ==8.4.2",
"ruff",
"ty",
# Remove once https://github.com/astral-sh/uv/issues/14827 is closed.
"wheel",
]
[project]
authors = [{ email = "dev@atoti.io", name = "ActiveViam" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
dependencies = []
description = "A JDK shipped in a Python package"
keywords = ["jdk", "java", "jvm", "jre"]
name = "jdk4py"
readme = "README.md"
requires-python = ">=3.10"
version = "21.0.8.0"
[project.urls]
Repository = "https://github.com/activeviam/jdk4py"
[tool.pytest.ini_options]
filterwarnings = ["error"]
[tool.ruff.lint]
ignore = [
"COM812",
"D100",
"D101",
"D102",
"D103",
"D104",
"D203",
"D211",
"D212",
"EM102",
"ISC001",
"S101",
"TRY003",
]
select = ["ALL"]
[tool.ty.rules]
unused-ignore-comment = "warn"
[tool.ty.terminal]
error-on-warning = true
[tool.uv]
# Keep pinned to ensure same version is used on CI and by `conda build` (see `conda.recipe/meta.yaml`).
required-version = "==0.9.2"
trusted-publishing = "always"