forked from your-tools/tsrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (44 loc) · 1.06 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
[tool.poetry]
name = "tsrc"
version = "2.0.0"
description = "Manage groups of git repositories"
authors = ["Dimitri Merejkowsky <[email protected]>"]
readme = "README.rst"
license = "BSD-3-Clause"
repository = "https://github.com/TankerHQ/tsrc"
documentation = "https://tankerhq.github.io/tsrc"
[tool.poetry.dependencies]
# Note: keep this in sync with .github/workflows/tests.yml
python = "^3.6"
attrs = "^19.3.0"
cli-ui = "^0.10.3"
colored_traceback = "^0.3.0"
path = "^13.1.0"
requests = "^2.22.0"
"ruamel.yaml" = "^0.16.7"
schema = "^0.7.1"
tabulate = "^0.8.6"
unidecode = "^1.1.1"
[tool.poetry.dev-dependencies]
# Tests
codecov = "^2.0.15"
coverage = "^5.1"
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
pytest-xdist = "^1.32.0"
mock = "^3.0.5"
# Linters
black = { version = "19.10b0", python = '^3.6' }
flake8 = "3.7.8"
flake8-comprehensions = "1.4.1"
mypy = "0.760"
# Docs
mkdocs = "1.0.4"
# Deps scanning
safety = "^1.9.0"
pygit2 = "^1.2.0"
[tool.poetry.scripts]
tsrc = "tsrc.cli.main:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"