-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.15 KB
/
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
36
37
38
39
40
41
42
[tool.poetry]
name = "cupid-bot"
version = "1.3.1"
description = "A Discord bot interface to the Cupid API."
authors = ["Artemis21 <artemisdev21@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^1.8.2"
graphviz = "^0.17"
"discord.py" = { git = "https://github.com/rapptz/discord.py.git", rev = "13251da8ce7a5567005338d7e617cb667596512d" }
cupid = { git = "https://github.com/cupid-bot/python-wrapper.git", branch = "main" }
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
flake8-annotations = "^2.6.2"
flake8-bugbear = "^21.4.3"
flake8-docstrings = "^1.6.0"
flake8-import-order = "^0.18.1"
flake8-string-format = "^0.3.0"
flake8-tidy-imports = "^4.3.0"
flake8-todo = "^0.7"
flake8-datetimez = "^20.10.0"
flake8-functions = "^0.0.6"
flake8-commas = "^2.0.0"
flake8-continuation = "^1.0.5"
flake8-comprehensions = "^3.5.0"
flake8-quotes = "^3.2.0"
flake8-self = "^0.2.2"
flake8-raise = "^0.0.5"
flake8-mutable = "^1.2.0"
mypy-extensions = "^0.4.3"
poethepoet = "^0.10.0"
jishaku = "~2.2.0"
[tool.poe.tasks]
bot = "python3 -m cupid-bot"
lint = "python3 -m flake8 ."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"