-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.6 KB
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
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "dataproc-ml"
version = "1.0.0rc1"
authors = [{ name = "Google LLC" }]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "A python library to ease MLOps for Dataproc customers"
license = "Apache-2.0"
license-files = ["LICENSE*"]
readme = "README.md"
requires-python = ">=3.12"
# Aligned with environment of Cloud Dataproc 2.3 for GCE-ML/serverless image
dependencies = [
"google-cloud-aiplatform>=1.121.0, <2.0.0",
"google-cloud-storage>=2.19.0, <3.0.0",
"pandas>=2.2.2, <3.0.0",
"pyarrow>=18.1.0, <20.0.0",
"tenacity>=8.5.0, <9.0.0",
"tensorflow>=2.18.0, <2.20.0",
"torch>=2.6.0, <3.0.0"
]
[project.urls]
Homepage = "https://github.com/GoogleCloudDataproc/dataproc-ml-python"
Documentation = "https://dataproc-ml.readthedocs.io/"
Issues = "https://github.com/GoogleCloudDataproc/dataproc-ml-python/issues"
[project.optional-dependencies]
test = [
"pytest",
"torchvision>=0.21.0, <1.0.0",
"pillow>=11.3.0, <12.0.0",
# For running tests, a full pyspark installation is needed.
"pyspark~=4.0.0",
]
dev = [
"pyink",
"pylint",
"build"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
[tool.pyink]
line-length = 80 # Default is 88
[tool.setuptools.packages.find]
include = ["google*"]
namespaces = true
[tool.pytest.ini_options]
addopts = "--ignore=load/"