-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 964 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
[tool.poetry]
name = "delta_utils"
version = "0.5.0"
description = ""
authors = ["Niels Lemmens <[email protected]>"]
readme = "README.md"
repository = "https://github.com/husqvarnagroup/delta_utils/"
documentation = "https://delta-utils.readthedocs.io/en/latest/"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
boto3 = "^1.34"
reverse_geocoder = "*"
iso3166 = "*"
requests = "*"
[tool.poetry.dev-dependencies]
delta-spark = "*"
pyspark = "<4"
mkdocs-material = "*"
mkdocstrings-python = "*"
black = "*"
isort = "*"
flake8 = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
mkdocs = "^1.4"
moto = {extras = ["s3"], version = "*"}
boto3-stubs = {extras = ["s3"], version = "*"}
requests-mock = "*"
types-requests = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."mkdocs.plugins"]
RootFiles = "mkdocs_plugins.files:RootFiles"