-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 979 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 979 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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "abib"
version = "417.21"
description = "A Bible study application"
readme = "README.md"
requires-python = ">=3.10"
# FIX: Use a simple string for the licence to avoid the deprecation warning
license = "GPL-3.0-or-later"
dependencies = [
"PySide6>=6.6.0",
"roman>=5.2",
"requests>=2.34.0",
"pywin32; sys_platform == 'win32'",
"pywin32-ctypes==0.2.3; sys_platform == 'win32'",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pyinstaller>=6.0.0",
]
# FIX: Explicitly define which folders and files are part of your package
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src"]}}
[tool.setuptools.package-data]
"abib" = ["data/**", "images/**", "font/**", "ui/*.py", "ui/*.ui"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[dependency-groups]
dev = [
"pyinstaller>=6.20.0",
]