-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (31 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
39 lines (31 loc) · 836 Bytes
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
[tool.poetry]
name = "schemadiffed"
version = "0.1.0.1"
description = "Compare Parquet file schemas across different filesystems"
authors = ["Elsayed91 <elsayed.is@outlook.com>"]
packages = [{include = "schemadiff"}]
readme = "README.md"
license = "MIT"
[tool.poetry.scripts]
schemadiff = "schemadiff.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
pyarrow = "^12.0.1"
pandas = "^2.0.3"
pyyaml = "^6.0.1"
gcsfs = {version = "^2023.6.0", optional = true}
s3fs = {version = "^2023.6.0", optional = true}
fsspec = "^2023.6.0"
[tool.poetry.extras]
aws = ["s3fs"]
google = [ "gcsfs"]
[tool.poetry.group.dev.dependencies]
memory-profiler = "^0.61.0"
pytest = "^7.4.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
black = "^23.7.0"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"