-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
58 lines (46 loc) · 1.35 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
[build-system]
requires = ["setuptools>=42.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = [
"src/tests",
]
[tool.briefcase]
project_name = "Note Splitter"
bundle = "wheelercj.note-splitter"
version = "1.0.0"
url = "https://github.com/wheelercj/note-splitter"
license = "GNU General Public License v3 (GPLv3)"
author = 'Chris Wheeler, Shiva Ramezani, Christian Vargas, and Serge Nazaretyan'
author_email = "[email protected]"
[tool.briefcase.app.note_splitter]
formal_name = "Note Splitter"
description = "Split markdown files into multiple smaller files."
icon = "src/note_splitter/resources/note_splitter"
sources = ['src/note_splitter']
requires = [
'pyside6==6.3.0',
'pyyaml>=6.0',
]
[tool.briefcase.app.note_splitter.macOS]
requires = [
'std-nslog~=1.0.0'
]
[tool.briefcase.app.note_splitter.linux]
requires = []
[tool.briefcase.app.note_splitter.linux.appimage]
system_requires = []
linuxdeploy_plugins = []
[tool.briefcase.app.note_splitter.linux.flatpak]
flatpak_runtime = 'org.kde.Platform'
flatpak_runtime_version = '6.3'
flatpak_sdk = 'org.kde.Sdk'
[tool.briefcase.app.note_splitter.windows]
requires = []
# Mobile deployments
[tool.briefcase.app.note_splitter.iOS]
supported = false
[tool.briefcase.app.note_splitter.android]
supported = false
[tool.briefcase.app.note_splitter.web]
supported = false