-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 1.32 KB
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
[tool.poetry]
name = "comlipy"
version = "1.2.1"
description = "comlipy by slashplus - lint commit messages with python"
authors = ["slashplus <info@slashplus.de>"]
maintainers = ["slashplus <info@slashplus.de>"]
readme = "README.md"
homepage = "https://gitlab.com/slashplus-build/comlipy/"
repository = "https://gitlab.com/slashplus-build/comlipy/"
documentation = "https://gitlab.com/slashplus-build/comlipy/tree/master/docs"
keywords = ["linting, git, git-hooks, commit-msg"]
license = "MIT"
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Systems Administration',
]
[tool.poetry.dependencies]
python = ">=3.7"
click = "==7.0"
pyyaml = "==5.3"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
comlipy = 'comlipy.main:cli'
comlipy-install = 'comlipy.main:install'