Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,35 +67,44 @@ colab = [
"psutil",
"python-calamine", # For parsing the included simulated .xlsx files.
]

# GPU deps
# Installed through `pip install -e .[and-cuda]`
and-cuda = [
"tensorflow[and-cuda] >= 2.21.0, < 2.22",
]

# MLflow deps
# Installed through `pip install -e .[mlflow]`
mlflow = ["mlflow"]

# JAX backend dependencies.
# Installed through `pip install -e .[jax]`
jax = [
"jax==0.7.2",
"jaxlib==0.7.2",
"tfp-nightly[substrates-jax]==0.26.0.dev20260130",
]

# MMM proto schema.
schema = [
"mmm-proto-schema >= 1.3.0",
"mmm-proto-schema >= 1.3.1",
"semver",
]

# Meridian Scenario Planner.
scenarioplanner = [
"google-api-python-client",
"google-auth",
"mmm-proto-schema >= 1.3.0",
"mmm-proto-schema >= 1.3.1",
"semver",
]

# Meridian GeoX.
geox = [
"meridian-geox >= 0.1.1,"
]

[tool.pyink]
# Formatting configuration to follow Google style-guide
line-length = 80
Expand Down
Loading