This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
67 lines (61 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "tor"
version = "0.0.0"
description = "A bot that handles moderating and scoring in /r/TranscribersOfReddit"
authors = ["Grafeas Group <[email protected]>"]
license = "MIT"
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: End Users/Desktop',
'Topic :: Communications :: BBS'
]
repository = "https://github.com/GrafeasGroup/tor"
homepage = "https://github.com/GrafeasGroup/tor"
include = ["commands.json", "tor/strings/*.yml"]
[tool.poetry.dependencies]
python = "^3.9"
sh = "^1.14.3"
bugsnag = "^4.2.1"
requests = "^2.31.0"
slackclient = "^1"
PyYaml = "^5.1"
blossom-wrapper = { git = "https://github.com/GrafeasGroup/blossom-wrapper.git", branch = "master" }
python-dotenv = "^0.20.0"
praw = "^7.6.0"
toml = "^0.10.2"
honeycomb-beeline = "^3.4.1"
shiv = "^1.0.1"
click = "^8.1.3"
pytest = "^7.1.2"
[tool.poetry.plugins."console_scripts"]
"tor" = "tor.cli.main:main"
[tool.poetry.group.dev.dependencies]
better-exceptions = "^0.3.3"
pytest-cov = "^3.0.0"
mypy = ">=0.800"
black = "^22.6.0"
types-toml = "^0.10.8"
types-PyYAML = "^6.0.11"
types-requests = "^2.28.7"
types-redis = "^4.3.13"
poetry = "^1.1.14"
poetry2setup = { git = "https://github.com/abersheeran/poetry2setup", branch = "master" }
ruff = "^0.0.267"
pre-commit = "^3.3.2"
[tool.black]
line-length = 100
[[tool.mypy.overrides]]
module = [
"praw",
"praw.*",
"prawcore",
"prawcore.*",
"blossom_wrapper",
"beeline",
"slackclient",
"pytest",
]
ignore_missing_imports = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"