forked from zincware/ZnDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (56 loc) · 1.42 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
[tool.poetry]
name = "zndraw"
version = "0.4.7"
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/**/*"]
[tool.poetry.dependencies]
python = "^3.10"
ase = "^3"
typer = {extras = ["all"], version = "^0"}
flask = "^2"
tqdm = "^4"
flask-socketio = "^5"
networkx = "^3"
pydantic = "^2"
python-socketio = {extras = ["client"], version = "^5.11"}
plotly = "^5"
pandas = "^2"
datamodel-code-generator = "^0.25"
celery = "^5"
sqlalchemy = "^2"
redis = "^5"
splines = "^0.3"
znsocket = "^0.1.6"
lazy-loader = "^0.4"
znjson = "^0.2.4"
[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.7.3"}
znh5md = {version = "^0.3"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
zndraw = 'zndraw.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 = "poetry.lock"