-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
74 lines (60 loc) · 1.65 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
[tool.poetry]
name = "zndraw"
version = "0.4.0"
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"
znh5md = {version = "^0", optional = true}
flask-socketio = "^5"
networkx = "^3"
pydantic = "^2"
python-socketio = {extras = ["client"], version = "^5"}
plotly = "^5"
pandas = "^2"
datamodel-code-generator = "^0.25"
mdanalysis = {version = "^2", optional = true}
tidynamics = {version = "^1", optional = true}
rdkit2ase = {version = "^0.1", optional = true}
zntrack = {version = "^0.7.3", optional = true}
celery = "^5"
sqlalchemy = "^2"
redis = "^5"
splines = "^0.3"
znsocket = "^0.1.6"
lazy-loader = "^0.4"
znjson = "^0.2.3"
[tool.poetry.group.dev.dependencies]
eventlet = "^0"
pre-commit = "^3"
pytest = "^7"
coverage = "^7"
ruff = "^0.1"
ipykernel = "^6.29.4"
[tool.poetry.extras]
all = ["mdanalysis", "tidynamics", "rdkit2ase", "zntrack", "znh5md"]
rdkit = ["rdkit2ase"]
io = ["zntrack", "znh5md"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
zndraw = 'zndraw.cli:cli'
"zndraw-upload" = 'zndraw.upload:cli'
[tool.poetry.urls]
repository = "https://github.com/zincware/ZnDraw"
[tool.ruff]
line-length = 90
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"