-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
94 lines (84 loc) · 2.52 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=2,<4"]
# region [flit]
[tool.flit.metadata]
author = "antistasi_tools"
classifiers = ["License :: OSI Approved :: MIT License"]
description-file = "README.md"
home-page = "https://github.com/Giddius/Antipetros_Discord_Bot"
license = "MIT"
module = "antipetros_discordbot"
requires = []
[tool.flit.scripts]
antipetrosbot = "antipetros_discordbot.__main__:cli"
[tool.flit.sdist]
exclude = [
"antipetros_discordbot/init_userdata/data_pack",
"antipetros_discordbot/init_userdata/*.trigger",
"antipetros_discordbot/dev_tools_and_scripts",
"misc",
"temp",
"docs",
"tools",
".pydeps",
".isort.cfg",
"tests",
".gitattributes",
".gitignore",
".editorconfig",
"antipetros_discordbot/utility/gidsql/_utils.archive",
"designer_files",
"art",
"dev_tools_and_scripts",
"pytest_coverage",
]
# endregion [flit]
# region [autopep8]
[tool.autopep8]
ignore = ["E402", "E501"]
max-line-length = 250
# endregion [autopep8]
# region [isort]
[tool.isort]
balanced_wrapping = true
ensure_newline_before_comments = true
group_by_package = true
import_heading_firstparty = "* Local Imports --------------------------------------------------------------------------------------->"
import_heading_gid = "* Gid Imports ----------------------------------------------------------------------------------------->"
import_heading_pyqt = "* PyQt5 Imports --------------------------------------------------------------------------------------->"
import_heading_stdlib = "* Standard Library Imports ---------------------------------------------------------------------------->"
import_heading_thirdparty = "* Third Party Imports --------------------------------------------------------------------------------->"
known_gid = ["gidtools", "gidlogger", "gidqtutils", "gidviewmodels"]
known_pyqt = ["PyQt5"]
length_sort = true
line_length = 200
lines_after_imports = 1
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"PYQT",
"GID",
"FIRSTPARTY",
"LOCALFOLDER",
]
# endregion [isort]
# region [pytest]
[tool.pytest.ini_options]
addopts = "-rP -vv --durations=0 --show-capture=all --color=auto --code-highlight=yes"
# endregion [pytest]
# region [gidvenv]
[tool.gidvenv.base_venv_settings]
clear = true
symlinks = true
system_site_packages = false
with_pip = false
# prompt=
upgrade_deps = false
[tool.gidvenv.settings]
extra_install_instructions = []
manipulate_script = true
pyclean_before = true
verbose = false
# endregion [gidvenv]