-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
75 lines (60 loc) · 1.53 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
[tool.poetry]
name = "zndraw"
version = "0.5.8"
description = "Display and Edit Molecular Structures and Trajectories in the Browser."
authors = ["zincwarecode <[email protected]>"]
license = "License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)"
readme = "README.md"
include = ["zndraw/templates/**/*", "zndraw_app/**/*"]
[tool.poetry.dependencies]
python = "^3.10"
ase = "^3"
typer = {extras = ["all"], version = "^0.13"}
flask = "^3"
tqdm = "^4"
flask-socketio = "^5"
networkx = "^3"
pydantic = "^2"
python-socketio = {extras = ["client"], version = "^5.11"}
plotly = "^5"
pandas = "^2"
celery = "^5"
sqlalchemy = "^2"
redis = "^5"
splines = "^0.3"
znsocket = "^0.2.7"
znjson = "^0.2.4"
eventlet = "^0.38"
[tool.poetry.group.dev.dependencies]
eventlet = "^0"
pre-commit = "^3"
pytest = "^7"
coverage = "^7"
ruff = "^0.1"
ipykernel = "^6.29.4"
mdanalysis = {version = "^2"}
tidynamics = {version = "^1"}
rdkit2ase = {version = "^0.1"}
zntrack = {version = "^0.8"}
znh5md = {version = "^0.4"}
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
furo = "^2024.8.6"
nbsphinx = "^0.9.5"
sphinx-copybutton = "^0.5.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
zndraw = 'zndraw_app.cli:cli'
[tool.poetry.urls]
repository = "https://github.com/zincware/ZnDraw"
[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"