-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.12 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
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
[tool.setuptools_scm]
[project]
name = "python-CIAM"
description = "An efficient Python implementation of the Coastal Impacts and Adaptation Model (CIAM)"
readme = "README.md"
authors = [{ name = "Ian Bolliger", email = "[email protected]"}, { name = "Nicholas Depsky", email = "[email protected]" }]
maintainers = [{ name = "Ian Bolliger", email = "[email protected]"}]
dependencies = [
"cloudpathlib",
"dask",
"distributed",
"gitpython",
"numpy",
"rhg_compute_tools",
"pandas",
"parameterize_jobs",
"pint-xarray",
"scipy",
"scikit-learn",
"xarray",
"zarr"
]
requires-python = ">=3.6"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
"Homepage" = "https://github.com/ClimateImpactLab/pyCIAM"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]