forked from mxcube/mxcubeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (74 loc) · 1.83 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
[tool.poetry]
name = "mxcubeweb"
version = "1.96.0"
license = "LGPL-3.0-or-later"
description = "MXCuBE Web user interface"
authors = ["The MXCuBE collaboration <[email protected]>"]
maintainers = [
"MXCuBE collaboration <[email protected]>",
]
readme = "README.md"
homepage = "http://github.com/mxcube/mxcubeweb"
repository = "http://github.com/mxcube/mxcubeweb"
documentation = ""
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",
]
packages = [{include = "mxcube3", from = "."}]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
Flask = "^2.2.2"
werkzeug = "2.3.7"
Flask-SocketIO = "^5.3.2"
flask-sqlalchemy = "^3.0.2"
Flask-Security-Too = "^5.0.2"
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"
devtools = "^0.10.0"
jsonschema = "^4.17.1"
pydantic = "^1.10.2"
PyDispatcher = "^2.0.6"
pytz = "^2022.6"
tzlocal = "^4.2"
mxcubecore = "1.34.0"
mxcube_video_streamer = "1.0.0"
bcrypt = "^4.0.1"
[tool.poetry.dev-dependencies]
myst-parser = "^2.0.0"
pylint = [ { version = "==2.13.9", python = "<=3.7.1" }, { version = "2.15.3", python = ">=3.8" } ]
pre-commit = "2.20.0"
pytest = "7.1.3"
pytest-cov = "4.0.0"
sphinx = "<7.2"
sphinxcontrib-httpdomain = "^1.8.1"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mxcubeweb-server = 'mxcube3:main'