-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
79 lines (72 loc) · 2.21 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
[build-system]
requires = ["cloudpickle", "executorlib", "h5io_browser", "h5py", "numpy", "monty", "pandas", "psutil", "pyfileindex", "pyiron_dataclasses", "pyiron_snippets", "pysqa", "sqlalchemy", "tables", "tqdm", "traitlets", "setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "pyiron_base"
description = "Core components of the pyiron integrated development environment (IDE) for computational materials science"
authors = [
{ name = "Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department", email = "pyiron@mpie.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.13"
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",
]
dependencies = [
"cloudpickle==3.1.0",
"executorlib==0.0.5",
"h5io_browser==0.1.4",
"h5py==3.12.1",
"numpy==1.26.4",
"monty==2024.10.21",
"pandas==2.2.3",
"psutil==6.1.0",
"pyfileindex==0.0.31",
"pyiron_dataclasses==0.0.1",
"pyiron_snippets==0.1.4",
"pysqa==0.2.2",
"sqlalchemy==2.0.36",
"tables==3.10.1",
"tqdm==4.67.0",
"traitlets==5.14.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/pyiron_base"
Documentation = "https://github.com/pyiron/pyiron_base"
Repository = "https://github.com/pyiron/pyiron_base"
[project.optional-dependencies]
conda = [
"conda==24.5.0",
"conda_subprocess==0.0.5",
]
devel = [
"gitpython==3.1.43",
]
flux = [
"jinja2==3.1.4",
]
stats = [
"pint==0.24.4",
]
[project.scripts]
pyiron = "pyiron_base.cli:main"
[tool.setuptools.packages.find]
include = ["pyiron_base*"]
[tool.setuptools.dynamic]
version = {attr = "pyiron_base.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "pyiron_base/_version.py"
parentdir_prefix = "pyiron_base"
tag_prefix = "pyiron_base-"