forked from mxcube/mxcubeweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.64 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 = "mxcube3"
version = "1.0.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 = "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",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
Flask = "^2.2.2"
Flask-SocketIO = "^5.3.2"
flask-sqlalchemy = "^3.0.2"
Flask-Security-Too = "^5.0.2"
gevent-websocket = "^0.10.1"
spectree = "^1.0.2"
mock = "^4.0.3"
scandir = "^1.10.0"
redis = "^4.3.5"
devtools = "^0.9.0"
jsonschema = "^4.17.1"
pytz = "^2022.6"
tzlocal = "^4.2"
mxcubecore = { git = "https://github.com/mxcube/mxcubecore.git", branch = "develop" }
[tool.poetry.dev-dependencies]
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"
[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'