generated from NathanVaughn/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.74 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
[project]
name = "poetry-azure-artifacts-plugin"
version = "0.1.2"
description = "Poetry plugin to handle Azure Artifacts authentication"
readme = "README.md"
authors = [{ name = "Nathan Vaughn", email = "[email protected]" }]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = [
# https://github.com/python-poetry/poetry/blob/main/pyproject.toml#L32
"artifacts-keyring>=0.3.6",
"poetry>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/NathanVaughn/poetry-azure-artifacts-plugin"
Repository = "https://github.com/NathanVaughn/poetry-azure-artifacts-plugin.git"
Issues = "https://github.com/NathanVaughn/poetry-azure-artifacts-plugin/issues"
[tool.uv]
dev-dependencies = [
"pre-commit>=3.2.0",
"pre-commit-uv>=3.8.0",
"tomli>=2.0.1; python_version < '3.11'",
]
[tool.poetry.plugins."poetry.plugin"]
poetry-azure-artifacts-plugin = "poetry_azure_artifacts_plugin.plugin:AzureArtifactsPlugin"
[tool.coverage.run]
omit = ["tests/*"]
[tool.pyright]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
reportMissingParameterType = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"