-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (67 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "kancelaria"
version = "0.1.0"
description = "Office application of the Józef Piłsudski Institute of America"
authors = ["Tomasz Kalata <klingaroo@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "~3.8"
briefcase = "^0.3.4"
PySide2 = "^5.15.2"
SQLAlchemy = "^1.4.15"
[tool.poetry.dev-dependencies]
pytest = "^6.2.0"
pytest-mock = "^3.5.1"
pytest-cov = "^2.11.1"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| temp.py
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.briefcase]
project_name = "Kancelaria"
bundle = "com.example"
version = "0.0.1"
url = "https://example.com/kancelaria"
license = "MIT license"
author = 'Tomasz Kalata'
author_email = "klingaroo@gmail.com"
[tool.briefcase.app.kancelaria]
formal_name = "Kancelaria"
description = "Office application of the Jozef Pilsudski Institute of America"
icon = "src/kancelaria/resources/kancelaria"
sources = ['src/kancelaria']
requires = [
'pyside2==5.15.2',]
[tool.briefcase.app.kancelaria.macOS]
requires = []
[tool.briefcase.app.kancelaria.linux]
requires = []
system_requires = []
[tool.briefcase.app.kancelaria.windows]
requires = []
# Mobile deployments
[tool.briefcase.app.kancelaria.iOS]
requires = []
[tool.briefcase.app.kancelaria.android]
requires = []