-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "toggl-tally"
version = "0.1.2"
description = "A rich CLI to track hours worked towards monthly targets with toggl"
readme = "README.md"
authors = [{ name = "Tim Wolff-Piggott", email = "twolffpiggott@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"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",
]
keywords = ["toggl", "cli", "track", "toggl-api", "command line"]
dependencies = [
"click>=8.1.3",
"holidays>=0.19",
"pyyaml>=6.0",
"requests>=2.28.2",
"rich>=13.3.2",
]
requires-python = ">=3.7"
[project.optional-dependencies]
test = ["pytest>=7.2.1"]
dev = [
"pytest>=7.2.1",
"black>=23.1.0",
"flake8>=6.0.0",
"ipdb",
"isort>=5.12.0",
"pre-commit",
]
[project.urls]
Homepage = "https://github.com/twolffpiggott/toggl-tally"
[project.scripts]
toggl-tally = "toggl_tally.cli:toggl_tally"
[tool.setuptools]
packages = ["toggl_tally"]
[tool.isort]
profile = "black"
multi_line_output = 3