aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 0b3bef0b4778253cacd31a08b695478212fefd62 (plain) (blame)
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 = "metricity"
version = "2.0.1"
description = "Advanced metric collection for the Python Discord server"
authors = ["Joe Banks <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = "3.10.*"

# See https://bot-core.pythondiscord.com/ for docs.
pydis-core = "9.4.1"

alembic = "1.10.2"
aiohttp = "3.8.4"
coloredlogs = "15.0.1"
deepmerge = "1.1.0"
gino = "1.0.1"
python-dotenv = "1.0.0"
psycopg2-binary = "2.9.6"
toml = "0.10.2"

[tool.poetry.dev-dependencies]
flake8 = "6.0.0"
flake8-annotations = "3.0.0"
flake8-docstrings = "1.7.0"
flake8-import-order = "0.18.2"

[tool.poetry.scripts]
start = "metricity.__main__:start"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"