-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 1.8 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
57
58
59
60
61
# pyproject.toml
[build-system]
requires = ["setuptools", "wheel"]
[project]
requires-python = ">=3.10"
name = "layercake_model"
version = "1.0.7-beta"
description = "A framework to design systems of partial differential equations (PDEs), and convert them to ordinary differential equations (ODEs) via Galerkin-type expansions. "
readme = "README.md"
authors = [
{ name = "Jonathan Demaeyer", email = "jodemaey@meteo.be" },
{ name = "Oisín Hamilton", email = "ush.hamilton@gmail.com" },
]
license = "BSD-3-Clause"
license-files = [ "LICENSE.txt" ]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
keywords = ["pde", "symbolic-computation", "ode-model"]
dependencies = [
"matplotlib",
"numpy",
"numba",
"scipy",
"sympy",
"sparse",
"pebble",
]
[project.urls]
homepage = "https://github.com/Climdyn/LayerCake"
documentation = "https://climdyn.github.io/LayerCake/"
[tool.setuptools]
packages = ["layercake",
"layercake.arithmetic",
"layercake.arithmetic.symbolic",
"layercake.arithmetic.terms",
"layercake.bakery",
"layercake.basis",
"layercake.formatters",
"layercake.inner_products",
"layercake.utils",
"layercake.variables",
]