forked from lowes/lvfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (53 loc) · 1.22 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "lvfs"
author = "Lowe's Companies, Inc."
author-email = " [email protected]"
home-page = "https://github.com/lowes"
classifiers = ["License :: OSI Approved :: MIT License"]
description-file = "README.md"
requires-python = ">=3.6"
requires = [
"pandas ~= 1.0",
"pyyaml ~= 5.3",
"hvac ~= 0.10",
"keyring ~= 21.5",
"python-dotenv ~= 0.15.0",
"aiofiles >= 0.5.0",
"pyarrow >= 0.13.0",
# Pybind is a dependency of pyorc but in some cases (alpine?) pip will not install it.
# So we force the issue here.
"pybind11 ~= 2.6.0",
]
[tool.flit.metadata.requires-extra]
all = [
"google-cloud-storage ~= 1.29",
"minio ~= 6.0",
"hdfs ~= 2.5",
"paramiko ~= 2.7.1",
"PySocks ~= 1.7",
"requests ~= 2.23",
"pyorc ~= 0.4.0",
"gssapi ~= 1.6.12",
"requests-gssapi ~= 1.2.3"
]
gcs = [
"google-cloud-storage ~= 1.29"
]
minio = [
"minio ~= 6.0"
]
hdfs = [
"hdfs ~= 2.5",
"paramiko ~= 2.7.1",
"PySocks ~= 1.7",
"requests ~= 2.23"
]
test = [
"pytest-benchmark ~= 3.0",
"pytest-timeout ~= 1.4",
"pytest-asyncio ~= 0.14.0",
"pytest ~= 6.0"
]