-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (78 loc) · 1.99 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
"*" = ["*.html"]
[project]
name = "digipad-api"
version = "2024.2.22"
description = "Unofficial Digipad API"
readme = "README.md"
authors = [{ name = "Laurent FAVOLE", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: Public Domain",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Education",
]
keywords = ["digipad", "education"]
dependencies = [
"click",
"flask",
"python-socketio",
"requests",
"tabulate",
]
requires-python = ">=3.7"
[project.optional-dependencies]
build = ["build", "pyinstaller", "twine"]
dev = ["black", "bumpver", "flake8", "isort", "pylint"]
docs = ["markdown-include", "mkdocs", "mkdocs-click", "mkdocs-material", "mkdocs-minify-plugin", "mkdocstrings[python]"]
[project.urls]
Homepage = "https://github.com/lfavole/digipad-api"
[project.scripts]
digipad = "digipad.__init__:main"
[tool.bumpver]
current_version = "2024.2.22"
version_pattern = "YYYY.MM.DD"
commit_message = "Release {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"digipad/__init__.py" = ["{version}"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.pylint.main]
jobs = 0
disable = [
"bad-indentation",
"bare-except",
"fixme",
"global-statement",
"import-outside-toplevel",
"invalid-str-returned",
"line-too-long",
"missing-module-docstring",
"missing-timeout",
"no-member",
"protected-access",
"unspecified-encoding",
]
include-naming-hint = "y"
[tool.pylint.basic]
allowed-redefined-builtins = "id"
good-names = ["f", "i", "id"]
no-docstring-rgx = "^main|__.*__$"
[tool.setuptools]
py-modules = []