-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 924 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "turba-data"
version = "0.1.0"
description = "Dataset package for soil fertility and fertilizer recommendation workflows across Morocco."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{name = "Turba Open Lab"}
]
keywords = ["agriculture", "soil fertility", "fertilizer", "site-specific", "npk recommendations", "morocco"]
dependencies = [
"pandas>=2.0",
"pyarrow>=14.0"
]
[project.urls]
Homepage = "https://github.com/open-turba/turba-data"
Repository = "https://github.com/open-turba/turba-data"
Issues = "https://github.com/open-turba/turba-data/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.package-data]
turba_data = ["registry.json", "datasets/*.parquet"]
[tool.setuptools.packages.find]
where = ["src"]