-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
106 lines (92 loc) · 2.49 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
[build-system]
requires = [
"setuptools"
]
build-backend = "setuptools.build_meta"
[project]
name = "taktk"
version = "0.1.0"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GPLv3.0 License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"ttkbootstrap",
"pyoload",
"comberload",
"PyYAML",
"PIllow",
"atak",
]
description = "Order your tkinter apps"
keywords = ["ttk", "components", "efus", "framework", "tkinter"]
license = {file="LICENSE"}
maintainers = [
{name="ken-morel", email="[email protected]"}
]
authors = [
{name="ken-morel", email="[email protected]"}
]
readme = "README.md"
requires-python = ">= 3.8"
[project.optional-dependencies]
all = [
]
ci = [
"pytest"
]
[project.urls]
Homepage = "https://github.com/ken-morel/taktk.git"
Documentation = "https://github.com/ken-morel/taktk/wiki"
Repository = "https://github.com/ken-morel/taktk.git"
Issues = "https://github.com/ken-morel/taktk/issues"
Changelog = "https://github.com/ken-morel/taktk/blob/main/doc/CHANGELOG.rst"
[tool.black]
line-length = 79
target-version = ['py312']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/foo.py # exclude a file named foo.py in the root of the project
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
^/Lib/*
^/
^/Lib/
/src/taktk
)
'''
[tool.mypy]
# Specify the paths to be checked
files = ["./src/taktk"]
# Disallow untyped function definitions
disallow_untyped_defs = true
# Disallow untyped calls
disallow_untyped_calls = true
# Disallow untyped decorators
disallow_untyped_decorators = true
# Disallow returning Any from functions
disallow_any_explicit = true
# Disallow usage of Any types
# disallow_any_generics = true
# Enable strict optional checking
strict_optional = true
# Ignore missing imports
# ignore_missing_imports = true
# Show error codes in output
show_error_codes = true
# Enable incremental mode
incremental = true
# Cache directory for mypy
cache_dir = ".mypy_cache"