-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 837 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
34
35
36
37
38
39
40
41
[tool.poetry]
name = "git-upstream-workflow"
version = "0.0.1"
description = "Git tools for working on branches to be committed upstream"
authors = ["Fluendo S.A. <support@fluendo.com>"]
readme = "README.md"
classifiers = [
'Programming Language :: Python',
]
packages = [
{ include = "guw" },
]
[tool.poetry.dependencies]
python = "^3.10"
tomli = "^2.0.1"
tomli-w = "^1.0.0"
colorlog = "^6.8.2"
gitpython = "^3.1.43"
[tool.poetry.scripts]
guw = "guw.main:run"
[tool.poetry.group.dev.dependencies]
ruff = "*"
tox = "*"
pytest = "^8.0.0"
pre-commit = "*"
tox-poetry-installer = {extras = ["poetry"], version = "^0.10.3"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py37"
[tool.ruff.lint]
extend-select = ["FA102", "I"]
ignore = ["E722"]