-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (52 loc) · 1.76 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "pyroll-basic"
description = "A meta package for installing quickly the PyRolL core and a set of basic plugins and extensions."
authors = [
{ name = "Christoph Renzing", email = "[email protected]" },
{ name = "Max Weiner", email = "[email protected]" }
]
license = "BSD-3-Clause"
requires-python = ">=3.9"
dependencies = [
"pyroll-core ~= 3.0",
"pyroll-cli ~= 3.0",
"pyroll-report ~= 3.0",
"pyroll-export ~= 3.0",
"pyroll-integral-thermal ~= 3.0",
"pyroll-lippmann-mahrenholz-force-torque ~= 3.0",
"pyroll-wusatowski-spreading ~= 3.0",
"pyroll-zouhar-contact ~= 3.0",
"pyroll-freiberg-flow-stress ~= 3.0",
"pyroll-lendl-equivalent-method ~= 3.0",
"pyroll-linear-thermal-expansion ~= 3.0",
"pyroll-elastic-mill-spring ~= 3.0",
"pyroll-gripping-analysis ~= 3.0",
"pyroll-interface-friction ~= 3.0",
"plotly"
]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"Framework :: Hatch",
"Framework :: IPython",
"Framework :: Jupyter",
"Framework :: Pytest",
"Framework :: Sphinx",
"Natural Language :: English",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pyroll.readthedocs.io"
Repository = "https://github.com/pyroll-project/pyroll-basic"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"