-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 733 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 733 Bytes
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
[tool.poetry]
name = "poetry-stickywheel-plugin"
version = "0.2.0"
description = ""
authors = ["Daniel Knell <contact@danielknell.co.uk>"]
readme = "README.md"
packages = [{include = "poetry_stickywheel_plugin.py", from = "src"}]
[tool.poetry.dependencies]
python = "^3.8"
poetry = "^1.2"
[tool.poetry.group.dev.dependencies]
shed = ">=0.10.1,<2023.7.0"
[tool.coverage.report]
show_missing = true
skip_empty = true
[tool.coverage.run]
branch = true
omit = ["tests/**"]
source = ["."]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.poetry.plugins."poetry.application.plugin"]
stickywheel = "poetry_stickywheel_plugin:StickyWheelsPlugin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"