-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "extremal-python-dependencies"
version = "0.1.0"
description = "A utility for installing extremal versions of dependencies for more robust testing"
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"toml==0.10.2",
"typer==0.19.1",
"click==8.3.3",
]
[project.optional-dependencies]
dev = [
"extremal-python-dependencies[test,lint]",
]
test = [
"pytest>=7.4.4",
]
style = [
"ruff==0.15.8",
"typos>=1.20.0",
]
lint = [
"extremal-python-dependencies[style]",
"pydocstyle==6.3.0",
"mypy==1.20.2",
"pylint==4.0.5",
"reno>=4.1",
"types-toml~=0.10.8.20240310"
]
[tool.hatch.build.targets.wheel]
only-include = [
"extremal_python_dependencies",
]
[tool.pylint.main]
py-version = "3.10"
disable = [
"missing-function-docstring",
]
[tool.ruff.lint.flake8-copyright]
notice-rgx = """
# \\(C\\) Copyright IBM \\d{4}((,\\s)\\d{4})*\\.
#
# This code is licensed under the Apache License, Version 2\\.0\\. You may
# obtain a copy of this license in the LICENSE\\.txt file in the root directory
# of this source tree or at http\\:\\/\\/www\\.apache\\.org\\/licenses\\/LICENSE\\-2\\.0\\.
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals\\.
"""
[tool.ruff.lint.pydocstyle]
convention = "google"
[project.scripts]
extremal-python-dependencies = "extremal_python_dependencies.main:main"