generated from pyiron/pyiron_module_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (60 loc) · 1.63 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
[build-system]
requires = [
"bidict",
"cloudpickle",
"executorlib",
"graphviz",
"pandas",
"toposort",
"typeguard",
"setuptools",
"versioneer[toml]==0.29",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyiron_workflow"
description = "pyiron_workflow - Graph-and-node based workflow tools."
readme = "docs/README.md"
keywords = [ "pyiron",]
requires-python = ">=3.10, <3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"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 = [
"bidict==0.23.1",
"cloudpickle==3.1.0",
"executorlib==0.0.5",
"graphviz==0.20.3",
"pandas==2.2.3",
"pint==0.24.4",
"pyiron_snippets==0.1.4",
"toposort==1.10",
"typeguard==4.4.1",
]
dynamic = [ "version",]
authors = [
{ name = "Liam Huber", email = "[email protected]" },
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/pyiron/pyiron_workflow"
Documentation = "https://pyiron-workflow.readthedocs.io"
Repository = "https://github.com/pyiron/pyiron_workflow"
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "pyiron_workflow/_version.py"
parentdir_prefix = "pyiron_workflow"
tag_prefix = "pyiron_workflow-"
[tool.setuptools.packages.find]
include = [ "pyiron_workflow*",]
[tool.setuptools.dynamic.version]
attr = "pyiron_workflow.__version__"