-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
87 lines (75 loc) · 1.84 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
[project]
name = "zndraw"
version = "0.5.10"
description = "Display and Edit Molecular Structures and Trajectories in the Browser."
authors = [
{ name = "Paul Hohenberger"},
]
classifiers = ["License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ase>=3.24.0",
"celery>=5.4.0",
"eventlet>=0.39.0",
"flask>=3.1.0",
"flask-socketio>=5.5.1",
"networkx>=3.4.2",
"pandas>=2.2.3",
"plotly>=6.0.0",
"pydantic>=2.10.6",
"python-socketio[client]>=5.12.1",
"redis>=5.2.1",
"splines>=0.3.2",
"sqlalchemy>=2.0.38",
"tqdm>=4.67.1",
"typer>=0.15.1",
"znjson>=0.2.6",
"znsocket>=0.2.8",
]
[project.urls]
Repository = "https://github.com/zincware/ZnDraw"
Releases = "https://github.com/zincware/ZnDraw/releases"
Discord = "https://discord.gg/7ncfwhsnm4"
Documentation = "https://zndraw.readthedocs.io/"
[project.scripts]
zndraw = 'zndraw_app.cli:cli'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/app",
]
[tool.hatch.build.targets.wheel]
include = ["zndraw", "zndraw_app"]
artifacts = [
"zndraw/templates/**",
]
[tool.ruff]
line-length = 90
[tool.ruff.lint]
select = ["I", "F"]
# by default do not run pytest marked with "chrome"
[tool.pytest.ini_options]
addopts = "-m 'not chrome'"
[tool.codespell]
skip = "*.svg,*.lock"
[dependency-groups]
dev = [
"mdanalysis>=2.8.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"rdkit2ase>=0.1.4",
"tidynamics>=1.1.2",
"znh5md>=0.4.4",
"zntrack>=0.8.2",
]
docs = [
"furo>=2024.8.6",
"nbsphinx>=0.9.6",
"sphinx>=8.1.3",
"sphinx-copybutton>=0.5.2",
]