-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
156 lines (139 loc) · 6.35 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiida-workgraph"
dynamic = ["version"] # read from aiida_workgraph/__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",
"ase",
"node-graph==0.1.12",
"node-graph-widget",
"aiida-core>=2.3",
"cloudpickle",
"aiida-shell~=0.8",
"aiida-pythonjob>=0.1.6",
"fastapi",
"uvicorn",
"pydantic_settings",
]
[project.urls]
Documentation = "https://aiida-workgraph.readthedocs.io"
Source = "https://github.com/aiidateam/aiida-workgraph"
[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 = "aiida_workgraph.cli.cmd_workgraph:workgraph"
[project.entry-points."aiida.cmdline"]
"workgraph" = "aiida_workgraph.cli.cmd_workgraph:workgraph"
[project.entry-points.'aiida.workflows']
"workgraph.engine" = "aiida_workgraph.engine.workgraph:WorkGraphEngine"
[project.entry-points."aiida.data"]
"workgraph.pickled_data" = "aiida_workgraph.orm.pickled_data:PickledData"
"workgraph.pickled_function" = "aiida_workgraph.orm.pickled_function:PickledFunction"
"workgraph.pickled_local_function" = "aiida_workgraph.orm.pickled_function:PickledLocalFunction"
[project.entry-points."aiida.node"]
"process.workflow.workgraph" = "aiida_workgraph.orm.workgraph:WorkGraphNode"
[project.entry-points."aiida_workgraph.task"]
"workgraph.zone" = "aiida_workgraph.tasks.builtins:Zone"
"workgraph.while" = "aiida_workgraph.tasks.builtins:While"
"workgraph.if" = "aiida_workgraph.tasks.builtins:If"
"workgraph.select" = "aiida_workgraph.tasks.builtins:Select"
"workgraph.set_context" = "aiida_workgraph.tasks.builtins:SetContext"
"workgraph.get_context" = "aiida_workgraph.tasks.builtins:GetContext"
"workgraph.time_monitor" = "aiida_workgraph.tasks.monitors:TimeMonitor"
"workgraph.file_monitor" = "aiida_workgraph.tasks.monitors:FileMonitor"
"workgraph.task_monitor" = "aiida_workgraph.tasks.monitors:TaskMonitor"
"workgraph.aiida_int" = "aiida_workgraph.tasks.builtins:AiiDAInt"
"workgraph.aiida_float" = "aiida_workgraph.tasks.builtins:AiiDAFloat"
"workgraph.aiida_string" = "aiida_workgraph.tasks.builtins:AiiDAString"
"workgraph.aiida_list" = "aiida_workgraph.tasks.builtins:AiiDAList"
"workgraph.aiida_dict" = "aiida_workgraph.tasks.builtins:AiiDADict"
"workgraph.aiida_node" = "aiida_workgraph.tasks.builtins:AiiDANode"
"workgraph.aiida_code" = "aiida_workgraph.tasks.builtins:AiiDACode"
"workgraph.test_add" = "aiida_workgraph.tasks.test:TestAdd"
"workgraph.test_sum_diff" = "aiida_workgraph.tasks.test:TestSumDiff"
"workgraph.test_arithmetic_multiply_add" = "aiida_workgraph.tasks.test:TestArithmeticMultiplyAdd"
"workgraph.pythonjob" = "aiida_workgraph.tasks.pythonjob:PythonJob"
"workgraph.aiida_process" = "aiida_workgraph.tasks.aiida:AiiDAProcessTask"
[project.entry-points."aiida_workgraph.property"]
"workgraph.any" = "aiida_workgraph.properties.builtins:PropertyAny"
"workgraph.int" = "aiida_workgraph.properties.builtins:PropertyInt"
"workgraph.float" = "aiida_workgraph.properties.builtins:PropertyFloat"
"workgraph.string" = "aiida_workgraph.properties.builtins:PropertyString"
"workgraph.bool" = "aiida_workgraph.properties.builtins:PropertyBool"
"workgraph.aiida_int" = "aiida_workgraph.properties.builtins:PropertyAiiDAInt"
"workgraph.aiida_float" = "aiida_workgraph.properties.builtins:PropertyAiiDAFloat"
"workgraph.aiida_string" = "aiida_workgraph.properties.builtins:PropertyAiiDAString"
"workgraph.aiida_bool" = "aiida_workgraph.properties.builtins:PropertyAiiDABool"
"workgraph.aiida_int_vector" = "aiida_workgraph.properties.builtins:PropertyAiiDAIntVector"
"workgraph.aiida_float_vector" = "aiida_workgraph.properties.builtins:PropertyAiiDAFloatVector"
"workgraph.aiida_list" = "aiida_workgraph.properties.builtins:PropertyAiiDAList"
"workgraph.aiida_dict" = "aiida_workgraph.properties.builtins:PropertyAiiDADict"
"workgraph.aiida_structuredata" = "aiida_workgraph.properties.builtins:PropertyStructureData"
[project.entry-points."aiida_workgraph.socket"]
"workgraph.any" = "aiida_workgraph.sockets.builtins:SocketAny"
"workgraph.namespace" = "aiida_workgraph.socket:TaskSocketNamespace"
"workgraph.int" = "aiida_workgraph.sockets.builtins:SocketInt"
"workgraph.float" = "aiida_workgraph.sockets.builtins:SocketFloat"
"workgraph.string" = "aiida_workgraph.sockets.builtins:SocketString"
"workgraph.bool" = "aiida_workgraph.sockets.builtins:SocketBool"
"workgraph.aiida_int" = "aiida_workgraph.sockets.builtins:SocketAiiDAInt"
"workgraph.aiida_float" = "aiida_workgraph.sockets.builtins:SocketAiiDAFloat"
"workgraph.aiida_string" = "aiida_workgraph.sockets.builtins:SocketAiiDAString"
"workgraph.aiida_structure" = "aiida_workgraph.sockets.builtins:SocketStructureData"
"workgraph.aiida_bool" = "aiida_workgraph.sockets.builtins:SocketAiiDABool"
"workgraph.aiida_int_vector" = "aiida_workgraph.sockets.builtins:SocketAiiDAIntVector"
"workgraph.aiida_float_vector" = "aiida_workgraph.sockets.builtins:SocketAiiDAFloatVector"
"workgraph.aiida_list" = "aiida_workgraph.sockets.builtins:SocketAiiDAList"
"workgraph.aiida_dict" = "aiida_workgraph.sockets.builtins:SocketAiiDADict"
"workgraph.aiida_structuredata" = "aiida_workgraph.sockets.builtins:SocketStructureData"
[tool.flit.sdist]
exclude = [
"docs/",
"tests/",
]
[tool.pylint.format]
max-line-length = 120