forked from delta-incubator/deltatorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.1 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
[tool.poetry]
name = "deltatorch"
version = "0.0.1"
description = "DeltaTorch allows loading training data from DeltaLake tables for training Deep Learning models using PyTorch"
authors = ["Michael Shtelma <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/mshtelma/deltatorch/"
keywords = ['delta', 'torch', 'pytorch', 'deltalake']
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
deltalake = ">=0.8"
pillow = ">=9.5"
[tool.poetry.dev-dependencies]
requests = "2.29.0"
torchtext = ">=0.15"
torchvision = ">=0.15"
pandas = ">=2.0.0"
pyspark = ">=3.4.0"
pytest = ">=7.3.0"
pytest-describe = ">=2"
portalocker = ">=2"
black= ">=23.3.0"
flake8-bugbear = ">=23"
flake8-pyprojecttoml = ">=0.0.2"
flake8-pyproject = ">=1.2.3"
pep8-naming = ">=0.13"
[tool.poetry.group.mkdocs]
optional = true
[tool.poetry.group.mkdocs.dependencies]
mkdocstrings-python = "^0.8.3"
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
markdown-include = "^0.8.1"
mkdocs = "^1.4.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"