-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.17 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "springable"
version = "1.0.1"
authors = [
{name="Paul Ducarme"},
{email="[email protected]" },
]
description = "Nonlinear spring assembly solver and visualization"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"tomli; python_version < '3.11'"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["nonlinear", "spring", "simulation", "animation", "instability", "snap-through"]
[tool.setuptools]
include-package-data = true # is true by default for setuptools v >= 61.0.0
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["springable.dynamics"]
[project.urls]
Homepage = "https://ducarme.github.io/springable/"
Source = "https://github.com/ducarme/springable"
Issues = "https://github.com/ducarme/springable/issues"