-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.43 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "thermontfa"
version = "0.1.0"
description = "This repository contains a material routine written in Python for the thermo-elasto-plastic Nonuniform Transformation Field Analysis (ThermoNTFA)"
authors = [
{name="Felix Fritzen", email="fritzen@simtech.uni-stuttgart.de"},
{name="Julius Herb", email="julius.herb@mib.uni-stuttgart.de"},
{name="Shadi Sharba", email="shadi.sharba@isc.fraunhofer.de"}
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {text = "CC-BY-4.0"}
requires-python = ">=3.10"
keywords = ["NTFA", "MOR", "mechanics", "composite materials", "temperature-dependence", "multi-scale", "plasticity"]
dependencies = [
'numpy~=1.26.4',
'h5py~=3.11.0',
'matplotlib~=3.8.4',
]
[project.optional-dependencies]
dev = [
'jupyterlab~=4.2.0',
'jupytext~=1.16.2',
'pre-commit~=3.7.1',
'pytest~=8.2.0',
'sphinx',
'myst-parser~=3.0.1',
'nbsphinx~=0.9.4',
'sphinx-gallery~=0.16.0',
'sphinx-rtd-theme~=2.0.0'
]
etc = []
all = [
"fnocg[dev,etc]"
]
[tool.flake8]
ignore = ['E731', 'E203', 'W503', 'F403', 'F405']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 120
count = true
[tool.isort]
profile = "hug"
src_paths = ["thermontfa", "examples", "test"]