-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
83 lines (69 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"pyGCodeDecode" = ["data/*", "examples/data/*"]
[project]
name = "pyGCodeDecode"
version = "1.3.1"
authors = [
{ name = "FAST-LB at KIT", email = "[email protected]" },
{ name = "Jonathan Knirsch", email = "[email protected]" },
{ name = "Felix Frölich", email = "[email protected]" },
{ name = "Lukas Hof", email = "[email protected]" },
]
description = "Generate time dependent boundary conditions from a .gcode file."
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.9"
dependencies = ["numpy", "matplotlib", "PyYAML", "pyvista"]
[project.optional-dependencies]
TEST = ["pytest-cov"]
DEVELOPER = [
"flake8",
"isort",
"black[jupyter]",
"flake8-docstrings",
"pre-commit",
"pytest-cov",
]
[project.urls]
Code = "https://github.com/FAST-LB/pyGCodeDecode"
Issues = "https://github.com/FAST-LB/pyGCodeDecode/issues"
[project.scripts]
pygcd = "pyGCodeDecode.cli:_main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = ["./pyGCodeDecode/"]
[tool.coverage.run]
omit = ["./tests/*", "./example/*"]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = ["if __name__ == .__main__.:", "except", "import"]
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = ["."]
[tool.pydoc-markdown.renderer]
type = "mkdocs"
[[tool.pydoc-markdown.renderer.pages]]
title = "API Documentation"
name = "index"
contents = ["pyGCodeDecode.*"]