-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
28 lines (24 loc) · 871 Bytes
/
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
[tool.poetry]
name = "cz-emoji"
version = "0.4.0"
description = "A `commitizen` plugin like `commitizen-emoji`, but more consistent with the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) spec and addition of custom emojis in messages."
authors = ["Hendry, Adam <[email protected]>"]
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8"
]
readme = "README.md"
repository = "https://github.com/adam-grant-hendry/cz-emoji"
[tool.commitizen]
name = "cz_emoji"
[tool.poetry.dependencies]
python = "^3.8"
commitizen = "^2.27.0"
emoji = "^1.7.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.13.0"]
build-backend = "poetry.core.masonry.api"