-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
33 lines (30 loc) · 1019 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
33
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pygccx"
description='A python framework for CalculiX'
authors = [
{name = "Matthias Sedlmaier", email = "[email protected]"},
]
version = "0.2.3"
dependencies = [
"numpy >= 1.22.4",
"scipy >= 1.9.0",
"gmsh >= 4.10.3",
]
requires-python = ">=3.10"
readme = "readme.md"
license = {file = "LICENSE"}
[tool.setuptools]
include-package-data = true
packages = ['pygccx',
'pygccx.test',
'pygccx.helper_features', 'pygccx.helper_features.test',
'pygccx.mesh', 'pygccx.mesh.test', 'pygccx.mesh.mesh_factory',
'pygccx.model_keywords', 'pygccx.model_keywords.test',
'pygccx.result_reader', 'pygccx.result_reader.test',
'pygccx.step_keywords', 'pygccx.step_keywords.test',
'pygccx.tools', 'pygccx.tools.stress_tools',
'pygccx.tools.stress_tools.test',
'pygccx.tools.bolts', 'pygccx.tools.bolts.test',]