-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.02 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
46
47
48
49
50
51
52
53
54
[project]
name = "cdippy"
version = "0.1.0-dev"
description = "CDIP python library"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "BSD License" }
authors = [
{ name = "CDIP", email = "9@cdip.ucsd.edu" }
]
requires-python = ">=3.11"
dependencies = [
"matplotlib",
"numpy",
"netCDF4",
"pandas",
"pytz",
]
keywords = ["oceanography", "waves", "buoy", "data"]
[project.urls]
Homepage = "https://cdip.ucsd.edu"
Source = "https://github.com/cdipsw/CDIPpy"
[tool.setuptools.packages.find]
where = ["."]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
docs = [
"mkdocs",
"mkdocs-jupyter",
"mkdocs-macros-plugin",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-material",
]
dev = [
"black",
"coverage",
"flake8",
"mkdocs",
"mkdocs-jupyter",
"mkdocs-macros-plugin",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-material",
"nbval",
"pre-commit",
"pytest",
]