-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
76 lines (68 loc) · 1.79 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
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "notifico"
version = "2.0.0"
description = "A service-to-IRC relay."
authors = ["Tyler Kennedy <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
Flask = "^2.1.2"
Flask-WTF = "^1.0.1"
Flask-Gravatar = "^0.5.0"
Flask-XML-RPC = "^0.1.2"
Flask-Mail = "^0.9.1"
Flask-Caching = "^1.10.1"
SQLAlchemy = "^1.4.36"
redis = "^4.3.4"
gunicorn = "^23.0.0"
Unidecode = "^1.3.4"
raven = "^6.10.0"
blinker = "^1.4"
docopt = "^0.6.2"
celery = "^5.2.6"
click = "^8.1.3"
requests = "^2.27.1"
email-validator = "^1.2.1"
Flask-Migrate = "^3.1.0"
pydantic = "^1.9.0"
python-dotenv = "^0.20.0"
psycopg2 = "^2.9.3"
rich = "^12.5.1"
gevent = "24.11.1"
pytest = { version = "^7.1.3", optional = true }
sentry-sdk = "^1.9.9"
Flask-RESTful = "^0.3.9"
Flask-Babel = "^2.0.0"
[tool.poetry.extras]
tests = ["pytest"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^23.3.0"
[tool.poetry.scripts]
notifico = "notifico.cli:cli"
[tool.poetry.plugins."notifico.plugins.incoming"]
"appveyor" = "notifico.contrib.services.appveyor:AppVeyorHook"
"github" = "notifico.contrib.services.github:GithubHook"
"gitlab" = "notifico.contrib.services.gitlab:GitlabHook"
"jenkins" = "notifico.contrib.services.jenkins:JenkinsHook"
"jira" = "notifico.contrib.services.jira:JIRAHook"
"plain" = "notifico.contrib.services.plain:PlainTextHook"
"travisci" = "notifico.contrib.services.travisci:TravisHook"
"gitea" = "notifico.contrib.services.gitea:GiteaHook"
[tool.poetry.plugins."notifico.plugins.outgoing"]
"discord" = "notifico.contrib.services.discord:DiscordHook"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
target-version = ['py310']
extend-exclude = '''
(
\.venv/
|\.local/
|\.cache/
|\.git/
|.+/migrations
)
'''