forked from UCSD-SIO-CDIP/CDIPpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 920 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 920 Bytes
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
[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]
dev = [
"black",
"coverage",
"flake8",
"mkdocs",
"mkdocs-jupyter",
"mkdocs-macros-plugin",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-material",
"mkdocstrings[python]",
"nbval",
"pre-commit",
"pytest",
]