-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
85 lines (79 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
[tool.poetry]
name = "mxcubeweb"
version = "4.230.0"
license = "LGPL-3.0-or-later"
description = "MXCuBE Web user interface"
authors = ["The MXCuBE collaboration <mxcube@esrf.fr>"]
maintainers = [
"MXCuBE collaboration <mxcube@esrf.fr>",
]
readme = "README.md"
homepage = "https://github.com/mxcube/mxcubeweb"
repository = "https://github.com/mxcube/mxcubeweb"
documentation = "https://mxcubeweb.readthedocs.io/"
keywords = ["mxcube", "mxcube3", "mxcubeweb"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
Flask = "^3.0.3"
werkzeug = "^3.0.3"
Flask-SocketIO = "^5.3.6"
flask-sqlalchemy = "^3.1.1"
Flask-Security-Too = "^5.4.3"
argon2_cffi = "^23.1.0"
flask-login = "^0.6.3"
gevent-websocket = "0.10.1"
spectree = "1.2.1"
mock = "^4.0.3"
"ruamel.yaml" = "^0.17.21"
scandir = "^1.10.0"
redis = "^4.3.5"
jsonschema = "^4.17.1"
pydantic = ">=2.8.2,<2.9.0"
PyDispatcher = "^2.0.6"
pytz = "^2022.6"
tzlocal = "^4.2"
mxcubecore = ">=1.188.0"
mxcube-video-streamer = ">=1.5.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "2.20.0"
pytest = "7.1.3"
pytest-cov = "4.0.0"
[tool.poetry.group.docs.dependencies]
furo = "^2023.9.10"
myst-parser = "^2.0.0"
sphinx = "<7.2"
sphinx-last-updated-by-git = "^0.3.7"
sphinxcontrib-httpdomain = "^1.8.1"
[tool.black]
line-length = 88
preview = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| test
| ui
| docs
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mxcubeweb-server = 'mxcubeweb:main'