forked from your-tools/tsrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
62
[tool.isort]
profile = "black"
[tool.poetry]
name = "tsrc"
version = "2.8.0pre"
description = "Manage groups of git repositories"
authors = ["Dimitri Merejkowsky <[email protected]>"]
readme = "README.rst"
license = "BSD-3-Clause"
repository = "https://github.com/dmerejkowsky/tsrc"
documentation = "https://dmerejkowsky.github.io/tsrc"
[tool.poetry.urls]
Changelog = "https://dmerejkowsky.github.io/tsrc/changelog/"
Issues = "https://github.com/dmerejkowsky/tsrc/issues"
[tool.poetry.dependencies]
# Note: keep this in sync with .github/workflows/tests.yml
python = "^3.7"
attrs = "^19.3.0"
cli-ui = "^0.11.0"
colored_traceback = "^0.3.0"
"ruamel.yaml" = "^0.16.7"
schema = "^0.7.1"
tabulate = "^0.8.6"
unidecode = "^1.1.1"
[tool.poetry.dev-dependencies]
# Task runner
invoke = "^1.5.0"
# Tests
coverage = ">= 6.0b1"
pytest = "^6.2.1"
pytest-cov = "^2.10"
pytest-xdist = "^1.32.0"
# cached-property is required by pygit2 for old Pythons
cached-property = { version = "^1.5.2", python = "< 3.8" }
pygit2 = { version = "^1.7.1" }
# Linters
black = "^22.3"
flake8 = "3.9.2"
flake8-bugbear = "^21.4.3"
flake8-comprehensions = "^3.4.0"
pep8-naming = "^0.11.1"
isort = "^5.7.0"
types-mock = "^0.1.1"
mypy = "0.960"
# Docs
mkdocs = "1.4.0"
mkdocs-material = "8.2.7"
[tool.poetry.scripts]
tsrc = "tsrc.cli.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"