-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
58 lines (51 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "wheel"]
[project]
name = "barotropic"
authors = [
{ name="Christopher Polster", email="chpolste@tuta.io" },
]
description = "A framework for barotropic analysis and modelling of the atmosphere"
readme = "readme.md"
requires-python = ">=3.10"
license = { file="LICENSE" }
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
dependencies = [
"numpy >=1.20.3",
"scipy >=1.6.3",
# Pyspharm on PyPI broken, must install manually
#"pyspharm >=1.0.9",
]
[project.optional-dependencies]
test = [
"pytest >=7"
]
extras = [
"matplotlib >=3.4.2",
"PyWavelets >=1.1.1",
"falwa >=1.0.0",
"xarray >= 2022.03.0"
]
docs = [
"Sphinx >=7.3.7",
"nbsphinx >=0.9.4",
"ipython >=8.23.0"
]
[project.urls]
documentation = "https://chpolste.github.io/barotropic"
source = "https://github.com/chpolste/barotropic"
[tool.setuptools.packages.find]
where = ["./src"]
include = ["barotropic"]
[tool.setuptools.dynamic]
version = { attr="barotropic.__version__" }
[tool.pytest.ini_options]
pythonpath = ["src"]