-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 1.59 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
[build-system]
requires = [
"hatchling==1.29.0",
"hatch-vcs==0.5.0",
]
build-backend = "hatchling.build"
[project]
name = "sphinx_parser"
description = "sphinx_parser - Your pyiron-like module."
readme = "docs/README.md"
keywords = [ "pyiron",]
requires-python = ">=3.9, <3.15"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"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",
"ase==3.28.0",
"h5py==3.16.0",
"semantikon==1.0.0",
"pint==0.25.3",
"pyyaml==6.0.3",
]
dynamic = [ "version",]
authors = [
{ name = "Sam Waseda", email = "waseda@mpie.de" },
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://pyiron.org/"
Documentation = "https://sphinx_parser.readthedocs.io"
Repository = "https://github.com/pyiron/sphinx_parser"
[tool.hatch.build]
include = [
"sphinx_parser"
]
[tool.hatch.build.hooks.vcs]
version-file = "sphinx_parser/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"sphinx_parser"
]
[tool.hatch.build.targets.wheel]
packages = [
"sphinx_parser"
]
[tool.hatch.version]
source = "vcs"
path = "sphinx_parser/_version.py"
[tool.mypy]
exclude = [
"^docs/conf\\.py$",
"^tests/",
]
ignore_missing_imports = true
strict_equality = true
non_interactive = true
install_types = true