-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 761 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
[project]
name = "owid-repack"
version = "0.1.7"
description = "Pack Pandas data frames into smaller, more memory-efficient data types."
authors = [
{name = "Our World in Data", email = "tech@ourworldindata.org"},
]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.24.0",
"pandas>=2.2.3,<3",
# there are problems with installing 18.0.0, but we should undo this once it's fixed
"pyarrow>=18.0.0",
]
[dependency-groups]
dev = [
"pytest>=7.2.0",
"ty==0.0.26",
"ruff==0.15.8",
"ipdb>=0.13.13",
]
[tool.uv]
exclude-newer = "3 days"
[tool.ruff]
extend = "../../pyproject.toml"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["owid"]