-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.3 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
[tool.poetry]
name = "podmena"
version = "0.6.1"
description = "Enhance your commit messages with emoji"
authors = ["Misha Behersky <[email protected]>"]
license = "Unlicense"
readme = "README.md"
repository = "https://github.com/bmwant/podmena"
keywords = ["git", "hook", "fun", "emoji", "commit"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Unix Shell"
]
[tool.poetry.dependencies]
python = "^3.6.2"
click = "^8.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
pytest = "^7.0.0"
[tool.poetry.scripts]
podmena = 'podmena.cli:cli'
[tool.poetry.urls]
"Blog post" = "https://bmwlog.pp.ua/"
[tool.black]
line-length = 88
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"