-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (99 loc) · 2.45 KB
/
pyproject.toml
File metadata and controls
108 lines (99 loc) · 2.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "mozilla-jetstream"
# This project does not issue regular releases, only when there
# are changes that would be meaningful to our (few) dependents.
version = "2026.3.3"
authors = [{ name = "Mozilla Corporation", email = "fx-data-dev@mozilla.org" }]
description = "Runs a thing that analyzes experiments"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"attrs",
"cattrs",
"Click",
"dask[distributed]",
"db-dtypes",
"GitPython",
"google-cloud-artifact-registry",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"google-cloud-container",
"google-cloud-storage",
"grpcio", # https://github.com/googleapis/google-cloud-python/issues/6259
"jinja2",
"mozanalysis",
"mozilla-metric-config-parser",
"mozilla-nimbus-schemas",
"pyarrow",
"pytz",
"PyYAML",
"requests",
"scikit-learn",
"smart_open[gcs]",
"statsmodels",
"toml",
]
[project.scripts]
jetstream = "jetstream.cli:cli"
[project.urls]
Repository = "https://github.com/mozilla/jetstream"
Documentation = "https://experimenter.info/deep-dives/jetstream/overview"
[project.optional-dependencies]
testing = [
"coverage",
"jsonschema",
"mypy",
"pytest",
"pytest-cov",
"pytest-ruff",
"pytest-xdist",
"ruff",
"tox",
"types-futures",
"types-protobuf",
"types-pytz",
"types-PyYAML",
"types-requests",
"types-setuptools",
"types-six",
"types-toml",
]
[tool.setuptools]
packages = [
"jetstream",
"jetstream.diagnostics",
"jetstream.logging",
"jetstream.tests",
"jetstream.tests.integration",
"jetstream.workflows",
]
[tool]
[tool.setuptools.package-data]
jetstream = ["../platform_config.toml"]
"jetstream.tests" = ["data/*"]
"jetstream.workflows" = ["*.yaml"]
# [tool.setuptools_scm]
[tool.ruff]
line-length = 100
exclude = [".git", "__pycache__"]
target-version = "py310"
[tool.ruff.lint]
ignore = ["E741", "RUF005", "RUF012", "SIM105"]
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"PT", # flake8-pytest-style
"Q", # flake8-quotes
"RUF", # Ruff-specific rules
"SIM", # flake8-simplify
"TC", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle
]