-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 997 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "klogpy"
version = "0.1.1"
description = "Python implementation of klog format for time tracking"
authors = ["Nick Yu <nickyu42@gmail.com>"]
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[tool.poetry.scripts]
klogpy = "klogpy.cli:klg"
[tool.poetry.dependencies]
python = "^3.9"
parsy = "^1.3"
click = "^7.1.2"
colorama = "^0.4.4"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.6"
flakehell = "^0.9.0"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
[tool.flakehell]
# Issue in flakehell, see #10
extended_default_ignore=[]
format = "colored"
show_source = true
max_line_length = 120
[tool.flakehell.plugins]
flake8-bandit = ["+*", "-S322"]
"flake8-*" = ["+*"]
mccabe = ["+*"]
pep8-naming = ["+*"]
pycodestyle = ["+*", "-W503"]
pyflakes = ["+*"]
pylint = ["+*"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"