-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 931 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
36
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "board-game-bot"
version = "0.4.0"
description = "Board game recommender bots 🤖"
authors = ["Markus Shepherd <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://recommend.games/"
repository = "https://gitlab.com/recommend.games/board-game-bot"
keywords = [
"board games",
"tabletop games",
"bot",
"twitter",
"mastodon"
]
classifiers = [
"Topic :: Games/Entertainment :: Board Games"
]
[tool.poetry.dependencies]
python = "~3.8"
board-game-utils = "<0.2.0"
html2text = "*"
mastodon-py = "*"
pretty-errors = "*"
python-dotenv = "*"
pytility = "*"
requests = "*"
tweepy = "<4.0.0"
urllib3 = "*"
[tool.poetry.dev-dependencies]
black = "*"
ipython = "*"
mypy = "*"
pre-commit = "*"
psutil = "*"
pylint = "*"
twine = "*"
types-requests = "*"
types-urllib3 = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"