forked from rbreu/beeref
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (38 loc) · 878 Bytes
/
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
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"flake8>=6.0.0",
"pybadges>=3.0.0",
"pyinstaller>=5.9.0",
"yamllint>=1.30.0",
"coverage>=7.2.2",
"httpretty>=1.1.4",
"pytest>=7.2.2",
"pytest-qt>=4.2.0",
"coverage>=7.2.2",
"psutil>=5.9.4",
]
[project]
name = "BeeRef"
version = "0.3.1"
description = "A simple reference image viewer"
readme = "README.rst"
authors = [
{name = "Rebecca Breu", email = "rebecca@rbreu.de"},
{name = "mini-ninja-64", email = "github@callumh.art"},
]
dependencies = [
"exif",
"pyQt6-Qt6>=6.4.2",
"pyQt6>=6.4.2",
"rectangle-packer>=2.0.1"
]
license = {text = "LICENSE"}
requires-python = "==3.10.*"
[project.urls]
Homepage = "https://github.com/rbreu/beeref"
[project.gui-scripts]
beeref = "beeref.__main__:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"