-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (61 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61.0", "build>=1.0.0", "twine>=4.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bluesky-notify"
version = "0.5.2"
authors = [
{ name = "Jeremy Meiss", email = "[email protected]" },
]
description = "A cross-platform desktop notification system for Bluesky"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"atproto>=0.0.56",
"sqlalchemy>=2.0.36",
"flask>=3.1.0",
"flask-cors>=5.0.0",
"flask-sqlalchemy>=3.1.1",
"click>=8.1.7",
"python-dotenv>=1.0.1",
"rich>=13.9.4",
"desktop-notifier>=3.5.0",
"alembic>=1.14.0",
"requests>=2.31.0",
"urllib3>=2.0.7",
"certifi>=2023.7.22",
"charset-normalizer>=3.3.2",
"idna>=3.4",
"backoff>=2.2.1",
"aiohttp>=3.8.0",
"psutil>=5.9.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"build>=1.0.0",
"twine>=4.0.0"
]
[project.urls]
"Homepage" = "https://github.com/jerdog/bluesky-notify"
"Bug Tracker" = "https://github.com/jerdog/bluesky-notify/issues"
[project.scripts]
bluesky-notify = "bluesky_notify.cli.commands:main"
[tool.setuptools.package-data]
"*" = ["services/**/*"]
[tool.poetry.dependencies]
# ...existing dependencies...
terminal-notifier = {version = "^2.0.0", platform = "darwin"}