-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
82 lines (74 loc) · 2 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
80
81
82
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida-workgraph-web-ui"
dynamic = ["version"] # read from aiida_workgraph_web_ui/__init__.py
description = "Design flexible node-based workflow for AiiDA calculation."
authors = [{name = "Xing Wang", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering"
]
keywords = ["aiida", "workflows"]
requires-python = ">=3.9"
dependencies = [
"numpy~=1.21",
"scipy",
"aiida-core>=2.3",
"aiida_workgraph",
"cloudpickle",
"fastapi",
"uvicorn",
"pydantic_settings",
]
[project.urls]
Documentation = "https://aiida-workgraph-web-ui.readthedocs.io"
Source = "https://github.com/aiidateam/aiida-workgraph-web-ui"
[project.optional-dependencies]
docs = [
"sphinx_rtd_theme",
"sphinx~=7.2",
"sphinx-copybutton~=0.5.0",
"sphinx-design~=0.5.0",
"sphinx-notfound-page~=1.0",
"sphinxext-rediraffe~=0.2.4",
"sphinx-intl~=2.1.0",
"sphinx-gallery",
"myst-nb~=1.0.0",
"nbsphinx",
]
pre-commit = [
"pre-commit~=2.2",
"pylint~=2.17.4",
]
tests = [
'pgtest~=1.3',
"pytest~=7.0",
"pytest-cov~=2.7,<2.11",
"playwright",
"httpx",
]
[project.scripts]
workgraph_web_ui = "aiida_workgraph_web_ui.backend.cmd_web:web"
[project.entry-points."workgraph.cmdline"]
"web" = "aiida_workgraph_web_ui.backend.cmd_web:web"
[tool.flit.sdist]
exclude = [
"docs/",
"tests/",
"aiida_workgraph_web_ui/frontend/node_modules/",
]
[tool.pylint.format]
max-line-length = 120