-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (61 loc) · 1.88 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyironflow"
description = "react xyflow for pyiron"
authors = [
{ name = "Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.13"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"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 = [
"anywidget",
"traitlets",
"ipytree",
"ipython",
"ipywidgets",
"pyiron_workflow",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/pyironFlow"
Documentation = "https://github.com/pyiron/pyironFlow"
Repository = "https://github.com/pyiron/pyironFlow"
[project.optional-dependencies]
dev = ["watchfiles", "jupyterlab"]
[tool.setuptools.packages.find]
include = ["pyironflow*"]
[tool.hatch.envs.default]
features = ["dev"]
[tool.hatch.build]
only-packages = true
artifacts = ["pyironflow/*", "pyironflow/static/*"]
[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = ["pyironflow/static/widget.js"]
skip-if-exists = ["pyironflow/static/widget.js"]
dependencies = ["hatch-jupyter-builder>=0.5.0"]
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
npm = "npm"
build_cmd = "build"
[tool.setuptools.dynamic]
version = {attr = "pyironflow.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "pyironflow/_version.py"
parentdir_prefix = "pyironflow"
tag_prefix = "pyironflow-"