-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 813 Bytes
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
[tool.poetry]
name = "blockmodpy"
version = "0.1.0"
description = "A Python implementation of BlockMod using QtPy."
authors = ["cybersonix <sunhaonuaa@outlook.com>"]
license = "BSD"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
qtpy = "^2.4.3"
pyside2 = { version = "^5.15.2.1", python = "<3.11" }
pytest-qt = "^4.0.2"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "primary"
[tool.poetry.group.dev.dependencies]
black = [
{ version = "<=24.8.0", python = ">=3.7,<3.9" },
{ version = "^25.1.0", python = ">=3.9" }
]
mypy = [
{ version = "<=1.14.1", python = ">=3.7,<3.9" },
{ version = "^1.15.0", python = ">=3.9" }
]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"