-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "m_n_kappa"
version = "0.0.1"
authors = [
{ name="Johannes Schorr", email="[email protected]" },
]
description = """
Open source library for using the strain-based method to compute
the stress-distribution of a cross-section considering multi-linear
material models
"""
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Typing :: Typed"
]
keywords = [
"engineering", "structural-engineering", "strain-based", "moment-curvature",
"deformation", 'non-linear material', 'beam', 'multi-linear material'
]
[project.urls]
"Documentation" = "https://johannesschorr.github.io/M-N-Kappa/"
"Repository" = "https://github.com/JohannesSchorr/M-N-Kappa"
"Issue tracker" = "https://github.com/JohannesSchorr/M-N-Kappa/issues"