forked from ViliamV/timewarrior-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 830 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
[tool.poetry]
name = "timewarrior-extensions"
version = "0.1.1"
description = "Extensions for Timewarrior"
authors = ["Viliam Valent <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ViliamV/timewarrior-extensions"
keywords = ["timewarrior", "timew", "extensions"]
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.dev-dependencies]
mypy = "^0.782"
black = "^19.10b0"
isort = "^4.3.21"
[tool.poetry.scripts]
timewarrior_percentage_install = 'timewarrior_extensions.install:install_percentage'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line_length = 110
[tool.isort]
line_length = 110
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true