-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (64 loc) · 1.42 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
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "get-repo"
version = "0.1.3"
repository = "https://github.com/florian42/get-repo"
description = "Small cli utility for cloning git repos in an orderly manner"
readme = "README.md"
authors = ["Florian <[email protected]>"]
license = 'MIT'
include = [
"LICENSE",
]
[tool.poetry.scripts]
get-repo = "get_repo.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.4.0"
git-url-parse = "^1.2.2"
GitPython = "^3.1.27"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pre-commit = "^2.17.0"
flake8-bugbear = "^22.1.11"
flake8-eradicate = "^1.2.0"
flake8-functions-names = "^0.3.0"
flake8-variables-names = "^0.0.5"
flake8-builtins = "^1.5.3"
isort = "^5.10.1"
mypy = "^0.940"
twine = "^3.8.0"
bumpver = "^2022.1118"
blue = "^0.9.0"
flake8 = "^4.0.1"
bandit = "^1.7.4"
radon = "^5.1.0"
xenon = "^0.9.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.bumpver]
current_version = "0.1.3"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"get_repo/__init__.py" = ["{version}"]
"tests/test_get_repo.py" = ["{version}"]