-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.25 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
[tool.poetry]
name = "votm"
version = "1.5.0"
description = "A full-featured Voting Manager - desktop app for school use"
authors = ["nozwock <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/nozwock/votm"
homepage = "https://github.com/nozwock/votm"
documentation = "https://github.com/nozwock/votm"
[tool.poetry.scripts]
manage = 'votm.manage:main'
vote = 'votm.vote:main'
[tool.poetry.dependencies]
python = ">=3.7 <3.11"
tabulate = "^0.8.9"
XlsxWriter = "^3.0.2"
appdirs = "^1.4.4"
Pillow = "^9.0.1"
toml = "^0.10.2"
ttkthemes = "^3.2.2"
pywin32 = { version = "*", platform = "windows" }
pywin32-ctypes = { version = "*", platform = "windows" }
typed-ast = "^1.5.2"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
pyinstaller = "^4.10"
[tool.black]
line-length = 88
target-version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/ # the root of the project
)
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"