-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (38 loc) · 898 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
[project]
name = "taxi_clockify"
description = "Taxi backend for Clockify"
authors = [
{name = "Sylvain Fankhauser", email = "[email protected]"},
]
readme = "README.rst"
requires-python = ">=3.7"
dynamic = ["version"]
dependencies = [
"requests>=2.3.0",
"taxi~=6.0",
"arrow>=0.15.8",
]
[project.urls]
Source = "https://github.com/sephii/taxi-clockify"
[project.entry-points."taxi.backends"]
clockify = "taxi_clockify.backend:ClockifyBackend"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/\..*
|/.direnv/
)
'''
[tool.isort]
profile = "black"
known_first_party = "taxi_clockify"
default_section = "THIRDPARTY"
line_length = 88
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
multi_line_output = 3
include_trailing_comma = true