-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.35 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kernelpack"
version = "0.1.0"
description = "Meshfree geometry, RBF-FD, partition-of-unity methods, and PDE solvers for Python."
readme = "README.md"
requires-python = ">=3.11"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "Varun Shankar" },
]
keywords = ["meshfree", "rbf-fd", "radial-basis-functions", "pde", "scientific-computing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpy>=2.0",
"scipy>=1.14",
"numba>=0.61",
]
[project.optional-dependencies]
examples = [
"matplotlib>=3.9",
]
dev = [
"build>=1.2",
"matplotlib>=3.9",
"pytest>=8.0",
]
[project.urls]
Homepage = "https://github.com/VarShankar/kernelpack-python"
Documentation = "https://github.com/VarShankar/kernelpack-python#readme"
Issues = "https://github.com/VarShankar/kernelpack-python/issues"
Source = "https://github.com/VarShankar/kernelpack-python"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]