forked from pyroll-project/pyroll-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyroll-core"
description = "PyRoll rolling simulation framework - core library."
authors = [
{ name = "Max Weiner", email = "max.weiner@imf.tu-freiberg.de" },
{ name = "Christoph Renzing", email = "christoph.renzing@imf.tu-freiberg.de" },
{ name = "Matthias Schmidtchen", email = "matthias.schmidtchen@imf.tu-freiberg.de" },
{ name = "Max Stirl", email = "max.stirl@imf.tu-freiberg.de" },
]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
]
requires-python = ">=3.9, <4.0"
dependencies = [
"numpy ~= 1.24",
"scipy ~= 1.9.0",
"shapely ~= 2.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pyroll-project.github.io"
Repository = "https://github.com/pyroll-project/pyroll-core"
Documentation = "https://pyroll.readthedocs.io/en/latest"