generated from GrafeasGroup/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.01 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
43
44
45
[tool.poetry]
name = "bubbles"
version = "0.1.0"
description = "A very chatty chatbot."
authors = ["Joe Kaufeld <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
wheel = "^0.38.1"
blossom-wrapper = { git = "https://github.com/GrafeasGroup/blossom-wrapper.git", branch = "master" }
matplotlib = "^3.3.0"
requests = "^2.24.0"
python-dotenv = "^0.14.0"
timeloop = "^1.0.2"
praw = "^7.1.0"
aiohttp = "^3.7.3"
slack-bolt = "^1.2.1"
poetry = "^1.1.6"
shiv = "^1.0.1"
pytest = "^7.1.2"
click = "^8.1.3"
utonium = { git = "https://github.com/GrafeasGroup/utonium.git", branch = "main" }
isort = "^5.10.1"
tinydb = "^4.7.0"
pytz = "^2022.7.1"
[tool.poetry.plugins."console_scripts"]
"bubbles" = "bubbles.main:main"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
poetry = "^1.1.14"
poetry2setup = "^1.1.0"
ruff = "^0.0.270"
pre-commit = "^3.3.2"
coveralls = "^3.3.1"
pytest-cov = "^4.1.0"
[tool.black]
line-length = 100
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"