-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 789 Bytes
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
[tool.poetry]
name = "plugin-bot"
version = "0.0.0"
license = "BSD-3-Clause"
description = "A plug and play Discord bot client written in Python."
readme = "README.rst"
authors = ["Greg Hilmes <[email protected]>"]
repository = "https://github.com/GregHilmes/plugin-bot"
keywords = ["discord-bot", "python", "plugin"]
classifiers = [
"Environment :: Plugins",
"Intended Audience :: Developers",
"Topic :: Communications :: Chat"
]
packages = [
{ include = "plugin_bot" },
]
[tool.poetry.dependencies]
python = "^3.6"
discord = ""
[tool.poetry.dev-dependencies]
pylint = "*"
yapf = "*"
sphinx = "*"
tox = "*"
[tool.poetry.urls]
"Bugs" = "https://github.com/GregHilmes/plugin-bot/issues"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"