-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.56 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
58
# pyproject.toml
[build-system]
requires = ["setuptools", "wheel"]
[project]
requires-python = ">=3.9"
name = "qgs"
version = "1.0.0"
description = "A 2-layer quasi-geostrophic atmospheric model. Can be coupled to a simple land or shallow-water ocean component."
readme = "README.md"
authors = [
{ name = "qgs Developers and Contributors", email = "jodemaey@meteo.be" },
]
license = { file = "LICENSE.txt" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
keywords = ["meteorology", "climate", "climate-variability", "atmospheric-models", "ocean-atmosphere-model"]
dependencies = [
"ipython",
"jupyter",
"matplotlib>=3.4",
"numba",
"numpy",
"scipy",
"sympy",
"sparse",
"pebble",
]
[project.urls]
homepage = "https://github.com/Climdyn/qgs"
documentation = "https://qgs.readthedocs.io"
[tool.setuptools]
packages = ["qgs",
"qgs.basis",
"qgs.diagnostics",
"qgs.functions",
"qgs.inner_products",
"qgs.integrators",
"qgs.params",
"qgs.plotting",
"qgs.tensors",
"qgs.toolbox",
]