-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
108 lines (98 loc) · 2.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sgzenity"
version = "0.1.9"
description = "sgzentry is a library for python which was inspired by Zenity. When you write scripts, you can use sgzentry to create simple dialogs that interact graphically with the user."
homepage="https://github.com/SoftGeekRO/sgzenity"
repository="https://github.com/SoftGeekRO/sgzenity.git"
documentation="https://github.com/SoftGeekRO/sgzenity/blob/main/README.md"
authors = [
"Zaharia Constantin <[email protected]>"
]
maintainers = []
license = "GPL-3.0-or-later"
readme = "README.md"
keywords=[
'zenity',
'python3',
'poetry',
'dialog',
'GTK+3'
]
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
packages=[
{ include="sgzenity", from="src" }
]
include=[
"CHANGELOG.md"
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
[tool.poetry.group.lint.dependencies]
black = ">=24.4.2"
isort = ">=5.13.2"
[tool.poetry.group.test.dependencies]
pytest = ">=8.2.2"
pytest-cookies = ">=0.7.0"
tox = ">=4.15.1"
toml = ">=0.10.2"
coverage = ">=7.5.3"
[tool.poetry.plugins]
[tool.poetry.scripts]
[tool.poetry.urls]
"Source" = "https://github.com/SoftGeekRO/sgzenity/"
"Issues" = "https://github.com/SoftGeekRO/sgzenity/issues"
"Discussions" = "https://github.com/SoftGeekRO/sgzenity/discussions"
"Documentation" = "https://github.com/SoftGeekRO/sgzenity/"
"Releases" = "https://github.com/SoftGeekRO/sgzenity/releases"
[tool.black]
line_length = 88
target_version = ['py310']
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.github
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \notebooks
| .ipynb_checkpoints
| __pycache__
| data
| logs
| _build
| buck-out
| build
| dist
| snapshots
)/
)
'''
[tool.isort]
py_version = 310
profile = "black"
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 88
count = true