-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 2.01 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
61
62
63
64
[project]
name = "alicebot-plugin-template" # TODO
version = "0.1.10" # TODO
description = "AliceBot Plugin Template." # TODO
authors = [{ name = "AliceBot", email = "concontact@alicebot.dev" }] # TODO
license = { text = "MIT" } # TODO
readme = "README.md"
keywords = ["bot", "chatbot", "alicebot", "tag1", "tag2"] # TODO
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat",
]
requires-python = ">=3.9"
dependencies = ["alicebot>=0.10.0"]
[project.urls]
Homepage = "https://docs.alicebot.dev/" # TODO
Documentation = "https://docs.alicebot.dev/" # TODO
Repository = "https://github.com/AliceBotProject/alicebot-plugin-template" # TODO
Changelog = "https://docs.alicebot.dev/changelog.html" # TODO
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D", # pydocstyle
"BLE", # flake8-blind-except
"FBT", # flake8-boolean-trap
"COM", # flake8-commas
"EM", # flake8-errmsg
"ISC", # flake8-implicit-str-concat
"INP", # flake8-no-pep420
"E501", # Line too long, handled by formatter
"ANN101", # Missing type annotation for self
"ANN102", # Missing type annotation for cls
"RUF001", # String contains ambiguous unicode character string
"RUF002", # Docstring contains ambiguous unicode character string
"RUF003", # Comment contains ambiguous unicode character string
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"
typeCheckingMode = "strict"
reportUnnecessaryIsInstance = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"