forked from poketwo/poketwo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 1020 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
35
[tool.poetry]
name = "poketwo"
version = "0.1.0"
description = "A small Pokécord clone"
authors = ["Oliver Ni <[email protected]>"]
license = "GPLv3"
[tool.poetry.dependencies]
python = "^3.8"
"discord.py" = { git = "https://github.com/Rapptz/discord.py.git", branch = "master", extras = ["speed"] }
umongo = "3.0.0b10"
motor = "^2.2.0"
jishaku = "^2.1.0"
dnspython = "^2.0.0"
suntime = "^1.2.5"
geocoder = "^1.38.1"
humanfriendly = "^8.2"
discord-flags = {git = "https://github.com/oliver-ni/Flag-Parsing.git"}
durations_nlp = "^1.0.1"
aioredis = "^1.3.1"
uvloop = "^0.15.2"
discord-ext-menus = { git = "https://github.com/Rapptz/discord-ext-menus.git" }
aioredis-lock = "^0.1.0"
discord-ext-menus-views = { git = "https://github.com/oliver-ni/discord-ext-menus-views.git" }
expiringdict = "^1.2.1"
[tool.poetry.dev-dependencies]
black = { version = "^20.8b1", allow-prereleases = true }
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100