blob: 41eca1a1052401f27acc30c1c0f407405072e8a2 (
plain)
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
|
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "moyaiBot"
version = "0.0.1"
description = "moyai"
authors = [
{ name="seth", email="[email protected]" },
]
#readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"discord.py >=2.0.0",
]
[project.optional-dependencies]
dev = [
"toml",
"yapf",
]
[project.urls]
"Homepage" = "https://github.com/getchoo/moyaiBot"
"Bug Tracker" = "https://github.com/getchoo/moyaiBot/issues"
[project.scripts]
moyaibot = "moyaiBot:main"
[tool.yapf]
use_tabs = true
|