forked from commitizen-tools/commitizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.43 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
72
73
[tool.commitizen]
version = "1.8.0"
tag_format = "v$version"
files = [
"pyproject.toml:version",
"commitizen/__version__.py"
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.poetry]
name = "commitizen"
version = "1.8.0"
description = "Python commitizen client tool"
authors = ["Santiago Fraire <santiwilly@gmail.com>"]
license = "MIT"
keywords = ["commitizen", "conventional", "commits", "git"]
readme = "README.rst"
homepage = "https://github.com/woile/commitizen"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.6"
questionary = "^1.4.0"
decli = "^0.5.0"
colorama = "^0.4.1"
termcolor = "^1.1"
packaging = "^19.0"
tomlkit = "^0.5.3"
[tool.poetry.dev-dependencies]
ipython = "^7.2"
black = "^19.3b0"
pytest = "^5.0"
flake8 = "^3.6"
pytest-cov = "^2.6"
pytest-mock = "^1.10"
codecov = "^2.0"
mypy = "^0.740"
mkdocs = "^1.0"
mkdocs-material = "^4.1"
isort = "^4.3.21"
[tool.poetry.scripts]
cz = "commitizen.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"