-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.15 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aglio"
version = "0.2.0"
authors = [
{ name="Chris Havlin", email="chris.havlin@gmail.com" },
]
description="Another Geodata Library for Input/Output (and more)"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies=["netcdf4",
"h5py",
"scipy",
"geopandas>=0.11.1",
"shapely>=2.0",
"xarray",
"scikit-learn",
"dask",
]
[project.urls]
"Homepage" = "https://github.com/chrishavlin/aglio"
"Bug Tracker" = "https://github.com/chrishavlin/aglio/issues"
[project.optional-dependencies]
dev = [
"pytest>=3",
"pytest-cov",
"pre-commit",
"yt>4.1",
]
full = [
"yt>4.1",
"tslearn",
]
extra = [
"yt>4.1",
"yt_xarray",
"yt_idv",
"cartopy",
]