Skip to content

Commit 8241f6f

Browse files
committed
Initial skeleton
1 parent 54ecc6b commit 8241f6f

9 files changed

+24
-0
lines changed

Dockerfile

Whitespace-only changes.

atomate_gui/__init__.py

Whitespace-only changes.

atomate_gui/app.py

Whitespace-only changes.

atomate_gui/cli.py

Whitespace-only changes.

atomate_gui/layouts/__init__.py

Whitespace-only changes.

atomate_gui/layouts/query.py

Whitespace-only changes.

atomate_gui/layouts/settings.py

Whitespace-only changes.

docker-compose.yml

Whitespace-only changes.

pyproject.toml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[build-system]
2+
requires = ["flit"]
3+
build-backend = "flit.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "atomate_gui"
7+
author = "Atomate GUI Development Team"
8+
author-email = "[email protected]"
9+
home-page = "github.com/hackingmaterials/atomate-gui"
10+
requires = [
11+
"atomate",
12+
"mp_dash_components",
13+
"dash==0.29.0rc6",
14+
"dash-renderer==0.15.0rc2",
15+
"dash-core-components==0.31.0rc2",
16+
"dash-html-components==0.14.0rc2",
17+
"dash-table-experiments>=0.6.0",
18+
"gunicorn>=19.7.1",
19+
"Flask-Caching>=1.3.3"
20+
]
21+
requires-python=">=3.7"
22+
23+
[tool.flit.scripts]
24+
atomate = "atomate_gui.cli:cli"

0 commit comments

Comments
 (0)