-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.07 KB
/
pyproject.toml
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
[project]
name = "stormevents"
description = "Python interfaces for observational data surrounding named storm events"
authors = [
{ name = "Zach Burnett", email = "[email protected]" },
{ name = "Soroosh Mani", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.6"
license = { file = "LICENSE" }
dependencies = [
"beautifulsoup4",
"geopandas",
"netcdf4",
"numpy",
"python-dateutil",
"pandas",
"pyproj >=2.6",
"requests",
"searvey >=0.2.0,<1.0",
"shapely >=1.8",
"typepigeon >=1.0.5, <2",
"xarray",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ['pytest', 'pytest-cov', 'pytest-socket', 'pytest-xdist']
style = ['black', 'reorder-python-imports']
docs = ['dunamai', 'm2r2', 'sphinx<7', 'sphinx-rtd-theme', 'toml']
[project.urls]
repository = 'https://github.com/oceanmodeling/StormEvents.git'
documentation = 'https://stormevents.readthedocs.io'
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]