-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
32 lines (30 loc) · 1.05 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
[tool.poetry]
name = "mxcubeqt"
version = "0.0.1"
license = "LGPL-3.0-or-later"
description = "PyQt interface for the MXCuBE application"
authors = ["The MXCuBE collaboration <[email protected]>"]
maintainers = [
"Marcus Oscarsson <[email protected]>",
"Rasmus H. Fogh <[email protected]>",
"Martin Savko <[email protected]>",
"Andrey Gruzinov <[email protected]>",
]
readme = "README.md"
homepage = "http://github.com/mxcube/mxcubeqt"
repository = "http://github.com/mxcube/mxcubeqt"
documentation = "https://github.com/mxcube/mxcubeqt/tree/develop/docs/"
keywords = ["mxcube", "mxcubeqt", "mxcubecore"]
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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"