-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.02 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
[build-system]
requires = [ "setuptools>=46.4.0", "wheel>=0.36.2"]
build-backend = "setuptools.build_meta"
[project]
name = "acme_metaflow"
version = "0.0.1"
description = "Metaflow based orchestration"
readme = "README.md"
classifiers = [ "Programming Language :: Python :: 3.12", ]
dependencies = [
"python-dotenv",
"metaflow",
"pylint",
"kubernetes", # for `metaflow configure kubernetes`
# "metaflow-netflixext"
"yfinance", # example data fetching
"pip" # required by metaflow
]
[[project.authors]]
email = "[email protected]"
[project.urls]
homepage = "https://example.com"
repository = "https://example.com"
[project.optional-dependencies]
dev = [
"pytest", # for testing
"uv", # for venv
"mkdocs", # for documentation
"mkdocs-material", # theme for mkdocs
"mkdocstrings[python]", # mkdocs plugin to generate API docs from sources
"jupyterlab", # for jupyter notebooks
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["acme_metaflow"]
# [tool.setuptools.package-data]