-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
39 lines (33 loc) · 889 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.poetry]
authors = ["Mathieu Larose <[email protected]>"]
description = "A simple command-line time tracker"
homepage = "https://github.com/larose/utt"
license = "GPL-3.0-only"
maintainers = ["Mathieu Larose <[email protected]>"]
name = "utt"
version = "0" # Do not change. Updated by a script.
[tool.poetry.dependencies]
argcomplete = "^3.2.1"
cargo = "^0.3"
python = "^3.8.1"
python_dateutil = "^2.8.1"
pytz = "^2023.3.post1"
tzlocal = "^5.2"
[tool.poetry.scripts]
utt = "utt.__main__:main"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
ddt = "^1.7.1"
flake8 = "^7.0.0"
isort = "^5.13.2"
mypy = "^1.8.0"
pytest = "^7.4.4"
requests = "^2.31.0"