-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 782 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 782 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "crux-ranks"
description = "Cache CrUX ranking data"
authors = [
{name = "Mozilla Corporation"}
]
version = "0.1.0"
requires-python = ">=3.12"
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"google-cloud-bigquery==3.34.0",
]
[project.optional-dependencies]
test = [
"mypy==1.17.0",
"ruff==0.12.4",
]
[project.scripts]
crux-ranks-update = "crux_ranks.update:main"
[tool.mypy]
disallow_untyped_defs = true
files = "crux_ranks/**/*.py"
[tool.setuptools]
packages = [
"crux_ranks"
]