-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (50 loc) · 1.86 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
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pyo_oracle"]
[tool.setuptools.package-data]
pyo_oracle = ["config.ini", "data/.gitkeep"]
[project]
name = "pyo_oracle"
version = "1.0.0"
authors = [
{ name="Vini Salazar", email="vinicius.salazar@unimelb.edu.au" },
]
description = "Python client for the Bio-ORACLE ERDDAP server."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
keywords = ["bio-oracle", "erddap", "oceanography", "marine", "climate", "sdm"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Oceanography",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"erddapy>=2.2",
"pandas>=2.0",
"httpx>=0.27",
]
[project.optional-dependencies]
xarray = ["xarray>=2023.1.0", "netCDF4>=1.6"]
viz = ["pyo-oracle[xarray]", "matplotlib>=3.7", "cmocean>=3.0", "cartopy>=0.22", "seaborn>=0.12"]
docs = ["mkdocs-material>=9.5", "mkdocstrings[python]>=0.24", "mkdocs-jupyter>=0.24"]
dev = ["pytest>=7.0", "pytest-cov>=4.0", "respx>=0.21", "flake8>=6.0", "ruff>=0.4"]
[project.urls]
"Homepage" = "https://github.com/bio-oracle/pyo_oracle"
"Documentation" = "https://bio-oracle.github.io/pyo_oracle/"
"Bug Tracker" = "https://github.com/bio-oracle/pyo_oracle/issues"
[tool.pytest.ini_options]
markers = [
"integration: tests that hit the live Bio-ORACLE ERDDAP server (deselect with -m 'not integration')",
]