-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
54 lines (49 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
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=61", "wheel" ]
[project]
name = "esdglider"
version = "0.4.0"
description = "Functions for processing ESD glider data"
license = "Apache-2.0"
authors = [
{ name = "Sam Woodman", email = "sam.woodman@noaa.gov" },
{ name = "Caleb Flaim" },
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"cartopy",
"cmocean",
"google-cloud-secret-manager>=2.12",
"google-crc32c>=1.1",
"gsw",
"matplotlib",
"netcdf4",
"numpy",
"pandas",
"pyglider",
"pyyaml",
"xarray",
]
optional-dependencies.imagery = [
"glidertools",
"skyfield",
"timezonefinder",
]
optional-dependencies.db = [
"sqlalchemy",
]
urls.Homepage = "https://swfsc.github.io/glider-lab-manual"
urls.Issues = "http://github.com/SWFSC/esdglider/issues"
urls.Repository = "http://github.com/SWFSC/esdglider.git"
[tool.setuptools.packages.find]
exclude = [ "tests*", "docs*" ]
[tool.setuptools.package-data]
esdglider = [ "data/*" ]