-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.21 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
[project]
name = "pyEDM"
description = "Python/Pandas toolset for Empirical Dynamic Modeling."
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [ "numpy",
"scipy",
"scikit-learn",
"pandas>=2.0",
"matplotlib>=3.7", ]
authors = [
{name = "Joseph Park", email = "JosephPark@IEEE.org"},
]
maintainers = [
{name = "Joseph Park", email = "JosephPark@IEEE.org"}
]
readme = "README.md"
license = "LicenseRef-UCSD-License"
license-files = ["LICENSE"]
keywords = ['EDM', 'Empirical Dynamic Modeling', 'nonlinear dynamics',
'time series', 'state space' ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://deepeco.ucsd.edu/"
Documentation = "https://sugiharalab.github.io/EDM_Documentation/"
Repository = "https://github.com/SugiharaLab/pyEDM"
Issues = "https://github.com/SugiharaLab/pyEDM/issues"
[tool.pdm.version]
source = "file"
path = "src/pyEDM/__init__.py"
[tool.pdm.build]
includes = ["apps", "src"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"