-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.72 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "chat_exporter"
keywords = ["chat exporter", "discord chat exporter", "discord", "discordpy"]
description = "A Python Package to Export Discord Chat Logs to HTML-Transcripts"
readme = "README.md"
authors = [
{ name = "syntax", email = "me@syntax.fo" },
]
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed"
]
dynamic = ["version", "dependencies"]
[project.urls]
GitHub = "https://github.com/1337Syntax/DiscordChatExporterPy"
[tool.setuptools.dynamic]
dependencies = { file = "requirements/_.txt" }
[tool.autopep8]
ignore = ["E731"]
max_line_length = 88
[tool.isort]
case_sensitive = true
combine_as_imports = true
force_grid_wrap = 0
include_trailing_comma = true
known_discord = "discord"
known_typing = "typing"
line_length = 88
lines_between_sections = 1
multi_line_output = 3
order_by_type = true
reverse_relative = true
sections = ["FUTURE", "DISCORD", "THIRDPARTY", "TYPING", "FIRSTPARTY", "LOCALFOLDER"]
[tool.pyright]
pythonVersion = "3.8"
typeCheckingMode = "basic"