-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.05 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
[project]
name = "hypersolver"
description = "hyper(bolic partial differential equations)solver"
readme = "readme"
requires-python = ">=3.7"
license = {file = "license"}
authors = [
{name = "ngam", email="[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
keywords = [
"hyperbolic", "PDE", "solver"
]
dependencies = ["numpy", "scipy"]
# This is set automatically by flit using `hypersolver.__version__`
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/uncscode/hypersolver"
repository = "https://github.com/uncscode/hypersolver"
[project.optional-dependencies]
dev = [
"pylint", "pytest", "autopep8", "jupyterlab", "pytype",
"typing", "build", "flake8", "jupyter-book", "ghp-import",
"matplotlib", "numba",
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"