-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.29 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
54
55
56
57
[project]
name = "pySPADS"
authors = [
{name = "Nelis Drost", email = "nelis.drost@gmail.com"}
]
description = "Implementation of the SPADS shoreline prediction algorithm from the paper 'A Multiscale Approach to Shoreline Prediction' by Montano et. al. (2020)."
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"bokeh>=3.2.2",
"click>=8.1.7",
"colorcet>=3.1.0",
"EMD-signal>=1.5.1",
"geopandas>=0.14.0",
"matplotlib>=3.8.0",
"numpy>=1.26.0",
"pandas>=2.1.0",
"pydantic>=2.7.4",
"PyYAML>=6.0.1",
"scikit-learn>=1.3.2",
"scipy>=1.11.2",
"seaborn>=0.12.2",
"shapely>=2.0.1",
"snakemake>=8.12.0",
"tqdm>=4.64.1",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = [
"tox",
"pytest==8.2.2",
"hypothesis",
"pytest-mock"
]
dev = [
"mat73==0.62",
"spinx",
"sphinx_rtd_theme",
"sphinx-click"
]
[project.urls]
Documentation = 'https://pySPADS.readthedocs.io'
Repository = 'https://github.com/UoA-eResearch/pySPADS'
[project.scripts]
pySPADS = "pySPADS.cli:cli"
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"