-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (54 loc) · 1.7 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
[build-system]
requires = ["cloudpickle", "pyzmq", "setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "executorlib"
description = "Scale serial and MPI-parallel python functions over hundreds of compute nodes all from within a jupyter notebook or serial python process."
authors = [
{ name = "Jan Janssen", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.14"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"cloudpickle==3.1.0",
"pyzmq==26.2.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/executorlib"
Documentation = "https://executorlib.readthedocs.io"
Repository = "https://github.com/pyiron/executorlib"
[project.optional-dependencies]
mpi = ["mpi4py==4.0.1"]
hdf = ["h5py==3.12.1"]
graph = [
"pygraphviz==1.14",
"matplotlib==3.9.2",
"networkx==3.4.2",
"ipython==8.29.0",
]
queue = ["pysqa==0.2.2"]
[tool.setuptools.packages.find]
include = ["executorlib*"]
[tool.setuptools.dynamic]
version = {attr = "executorlib.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "executorlib/_version.py"
parentdir_prefix = "executorlib"
tag_prefix = "executorlib-"