forked from barbarazimbres/seals_dev_BZ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject_with_deps.toml
More file actions
45 lines (41 loc) · 1.05 KB
/
pyproject_with_deps.toml
File metadata and controls
45 lines (41 loc) · 1.05 KB
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
[project]
name = "sealsmodel"
description = "Land-use change model and downscaler"
requires-python = ">=3.6"
readme = "README.md"
license-files = ["LICENSE"]
maintainers = [
{name = "Justin Andrew Johnson"}
]
keywords = ["geospatial", "raster", "shapefile"]
dependencies = [
"geopandas",
"hazelbean",
"google-cloud-storage",
"matplotlib",
"netcdf4",
"numpy",
"gdal",
"pandas",
"pygeoprocessing",
"scipy",
"scikit-learn"
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/jandrewjohnson/seals_dev"
[build-system]
requires = [
"setuptools>=74.1", "wheel", "cython>3.0.0",
'oldest-supported-numpy; python_version<"3.8"',
'numpy>2; python_version>="3.8"',
]
[tool.setuptools]
packages = ["seals"]
package-data = { "seals" = ["*.pyx"] }
ext-modules = [
{ name = "seals.seals_cython_functions", sources = ["seals/seals_cython_functions.pyx"] }
]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"