-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (54 loc) · 1.18 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
58
59
60
61
62
63
64
65
[tool.poetry]
name = "pyfivetran"
version = "2024.04.26.01"
description = "Pythonic interface to the fivetran API"
authors = ["Khari Gardner <[email protected]>"]
license = "MIT"
readme = "readme.md"
[tool.poetry.dependencies]
python = "^3.8, <3.12"
httpx = "^0.25.1"
lazy = "^1.6"
pytz = "^2024.1"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
mypy = "^1.7.0"
ruff = "^0.1.6"
pre-commit = "^3.5.0"
pytest-mock = "^3.12.0"
coverage = {extras = ["toml"], version = "^7.3.4"}
pytest-cov = "^4.1.0"
isort = "^5.13.2"
types-python-dateutil = "^2.8.19.20240106"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.2.1"
sphinx-autodoc2 = {extras = ["cli"], version = "^0.5.0"}
sphinx-rtd-theme = "^2.0.0"
myst-parser = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = [
".git",
".mypy_cache",
".ruff_cache",
".venv",
"__pycache__",
"venv",
"__pypackages__",
"build",
"dist",
"tests"
]
line-length = 88
indent-width = 4
[tool.pytest]
testpaths = [
"tests",
]