-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (52 loc) · 1.33 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
59
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["rkstiff"]
[project]
name = "rkstiff"
version = '0.3.0'
authors = [{name = "Patrick Whalen", email = "whalenpt@gmail.com"}]
description = "'Runge-Kutta adaptive-step and constant-step solvers for nonlinear PDEs'"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["ETD", "Runge-Kutta", "Nonlinear PDEs"]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >=1.14.0",
"scipy >=1.3.2"
]
[project.optional-dependencies]
demo = [
"matplotlib",
"jupyter"
]
dev = [
"flake8",
"mccabe",
"mypy",
"pylint",
"twine"
]
test = [
"coverage",
"pytest",
"tox"
]
[project.urls]
homepage = "https://github.com/whalenpt/rkstiff"
documentation = "https://github.com/whalenpt/rkstiff"
repository = "https://github.com/whalenpt/rkstiff"
[tool.black]
line-length = 127