-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 993 Bytes
/
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
[project]
name = "pyroll-elastic-mill-spring"
description = "Plugin for PyRolL incorporating the influence of the elastic mill spring."
authors = [
{ name = "Christoph Renzing", email = "[email protected]" },
{ name = "Max Weiner", email = "[email protected]" }
]
license = "BSD-3-Clause"
homepage = "https://pyroll.readthedocs.io/"
repository = "https://github.com/pyroll-project/pyroll-elastic-mill-spring"
documentation = "https://github.com/pyroll-project/pyroll-elastic-mill-spring/blob/main/docs/docs.pdf"
packages = [
{ include = "pyroll/elastic_mill_spring" }
]
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 = [
"pyroll-core ~= 3.0"
]
dynamic = ["version"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"