-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (30 loc) · 914 Bytes
/
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
[tool.poetry]
name = "discord-fate-bot"
version = "0.4.0"
description = "Discord bot to help run a FATE campaign"
authors = ["Chris Bouchard <chris@upliftinglemma.net>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/chrisbouchard/discord-fate-bot"
repository = "https://github.com/chrisbouchard/discord-fate-bot"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Communications :: Chat",
"Topic :: Games/Entertainment :: Role-Playing"
]
[tool.poetry.dependencies]
python = "^3.7"
aiofiles = "^0.4.0"
aiorun = "^2020.2.1"
"discord.py" = "^1.3.2"
environ-config = "^20.1.0"
mashumaro = "^1.12"
motor = "^2.1.0"
[tool.poetry.dev-dependencies]
unittest-xml-reporting = "^3.0.2"
advbumpversion = "^1.2.0"
[tool.poetry.scripts]
discord-fate-bot = "discord_fate_bot.console_script:main"
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"