-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (65 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "upde"
version = "1.0.2"
description = "A lightweight Python library for solving 1D and 2D PDEs using the method of lines"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Tony Saad", email = "tony.saad@utah.edu" },
]
keywords = [
"PDE",
"partial differential equations",
"method of lines",
"numerical methods",
"scipy",
"numpy",
"heat equation",
"advection diffusion",
"Navier-Stokes",
"reaction diffusion",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.22",
"scipy>=1.8",
]
[project.optional-dependencies]
cantera = ["cantera>=3.0"]
dev = [
"pytest>=7.0",
"pytest-cov",
]
[project.urls]
Homepage = "https://saadgroup.github.io/uPDE/"
Documentation = "https://saadgroup.github.io/uPDE/"
Repository = "https://github.com/saadgroup/upde"
"Bug Tracker" = "https://github.com/saadgroup/upde/issues"
"uPDE Builder" = "https://saadgroup.a2hosted.com/upde/"
Paper = "https://doi.org/10.1016/j.softx.2026.102715"
[tool.hatch.build.targets.sdist]
include = [
"upde/",
"pyproject.toml",
"README.md",
"LICENSE",
]
[tool.hatch.build.targets.wheel]
packages = ["upde"]