-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 851 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 851 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
39
40
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "biotrust-fusion"
version = "0.1.0"
description = "Reliability-aware heterogeneous biodiversity data integration research."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"PyYAML>=6.0",
"matplotlib>=3.8",
"scikit-learn>=1.4",
"scipy>=1.12",
"requests>=2.31",
"psutil>=5.9",
"h5py>=3.10",
"xarray>=2024.1",
"netCDF4>=1.6",
"rasterio>=1.3",
"pyarrow>=15.0",
"boto3>=1.34",
"pyproj>=3.6",
"shapely>=2.0",
"pystac-client>=0.8",
"planetary-computer>=1.0",
]
[project.optional-dependencies]
test = ["pytest>=8.0"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["src"]