-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (82 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
93 lines (82 loc) · 2.01 KB
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
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["numpy", "hatchling==1.27.0", "hatch-vcs==0.5.0"]
build-backend = "hatchling.build"
[project]
name = "pyiron_dataclasses"
description = "Dataclasses for the pyiron workflow framework"
authors = [
{ name = "Jan Janssen", email = "janssen@mpie.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.15"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"numpy==2.4.3",
"pint==0.25.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/pyiron_dataclasses"
Documentation = "https://github.com/pyiron/pyiron_dataclasses"
Repository = "https://github.com/pyiron/pyiron_dataclasses"
[project.optional-dependencies]
convert = [
"h5io_browser==0.2.12",
]
[tool.ruff]
exclude = [".ci_support", "tests", "_version.py"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-comprehensions
"C4",
# eradicate
"ERA",
# pylint
"PL",
]
ignore = []
[tool.hatch.build]
include = [
"pyiron_dataclasses"
]
[tool.hatch.build.hooks.vcs]
version-file = "pyiron_dataclasses/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"pyiron_dataclasses"
]
[tool.hatch.build.targets.wheel]
packages = [
"pyiron_dataclasses"
]
[tool.hatch.version]
source = "vcs"
path = "pyiron_dataclasses/_version.py"
[tool.coverage.run]
omit = ["pyiron_dataclasses/_version.py", "tests/*"]
command_line = "-m unittest discover tests"