-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (43 loc) · 1016 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gcp-mlops-demo"
version = "0.8.0.dev0"
description = "An example project for doing MLOps on Vertex AI"
authors = [{ name = "Murat Eken", email = "meken@google.com" }]
readme = "README.md"
urls = { repository = "https://github.com/meken/gcp-mlops-demo" }
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = [
"scikit-learn",
"pandas"
]
[project.optional-dependencies]
gcp = [
"kfp",
"google-cloud-aiplatform",
"google-cloud-pipeline-components",
]
interactive = [
"matplotlib",
"seaborn",
"pandas-gbq",
"gcsfs",
"pyarrow"
]
dev = [
"build",
"flake8-pyproject",
"pytest",
"coverage"
]
[tool.flake8]
max-line-length = 120
exclude = [".venv", "build"]
[tool.pytest.ini_options]
addopts = "-W ignore::DeprecationWarning"
markers = ["unit: Marks tests as unittests"]
[tool.coverage.run]
disable_warnings = ["no-data-collected"]