-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
35 lines (33 loc) · 945 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
[build-system]
requires = ["setuptools", "setuptools-scm", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "kbcstorage"
authors = [
{name = "Keboola", email = "[email protected]"},
]
description = "Client for Keboola Storage API"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["keboola", "storage"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"boto3",
"azure-storage-blob",
"urllib3<2.0.0", # Frozen until fixed: https://github.com/boto/botocore/issues/2926
# Dev dependencies
"requests",
"responses",
"python-dotenv",
"google-cloud-storage==2.16.0",
"google-auth==2.29.0"
]
dynamic = ["version"]
[tool.setuptools-git-versioning]
enabled = true