-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 923 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 923 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pycont-lite"
description = "Lightweight matrix-free arclength continuation with bifurcation detection and branch switching."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name="Hannes Vandecasteele", email="hannesvdc@gmail.com" }
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"matplotlib"
]
dynamic = ["version"]
[project.scripts]
pycont-lite-demo = "pycont._demo:main"
[project.urls]
Homepage = "https://github.com/hannesvdc/PyCont-Lite"
Documentation = "https://github.com/hannesvdc/PyCont-Lite"
Source = "https://github.com/hannesvdc/PyCont-Lite"
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "pycont.__version__" }