-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.29 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
[project]
name = "toggl-to-sqlite"
version = "0.7.0"
description = "ACreate a SQLite database containing data from your Toggl account"
readme = "README.md"
authors = [{name = "Ryan Cheley"}]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"sqlite-utils>=2.4.4",
"click",
"requests",
"requests_mock",
"toml",
"click",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.urls]
Issues = "https://github.com/ryancheley/toggl-to-sqlite/issues"
CI = "https://github.com/ryancheley/toggl-to-sqlite/actions"
Changelog = "https://github.com/ryancheley/toggl-to-sqlite/releases"
Documentation = "https://github.com/ryancheley/toggl-to-sqlite/blob/main/README.md"
[project.optional-dependencies]
test = [
"pytest",
"black",
"isort",
"coverage",
"mypy",
"cogapp",
"pre-commit"
]
[tool.black]
line-length = 130
target-version = ['py311']
include = '\.pyi?$'
exclude = '(venv)'