-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
70 lines (65 loc) · 1.66 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "suppgram"
version = "0.0.4"
authors = [
{ name="Tigran Saluev", email="[email protected]" },
]
maintainers = [
{ name="Tigran Saluev", email="[email protected]" },
]
description = "Minimalistic support system with Telegram-based UI"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click~=8.1.7",
]
[project.optional-dependencies]
dev = [
"mkdocs~=1.5.3",
"mkdocstrings~=0.24.0",
"mkdocstrings-python~=1.7.5",
"mypy~=1.7.1",
"mypy-extensions~=1.0.0",
"pytest~=7.4.2",
"pytest-mock~=3.12.0",
"pytest-asyncio~=0.21.1",
"ruff~=0.1.6",
]
mongodb = ["motor~=3.3.2"]
pubnub = [
"aioconsole~=0.6.2",
"pubnub~=7.3.1",
]
shell = ["aioconsole~=0.6.2"]
sqlalchemy = [
"aiosqlite~=0.19.0",
"alembic~=1.13.1",
"asyncpg~=0.29.0",
"SQLAlchemy~=2.0.22",
]
sqlalchemy_slim = ["SQLAlchemy~=2.0.22"]
telegram = ["python-telegram-bot~=20.6"]
[project.urls]
Homepage = "https://github.com/Saluev/suppgram"
Documentation = "https://suppgram.readthedocs.org"
Repository = "https://github.com/Saluev/suppgram.git"
Issues = "https://github.com/Saluev/suppgram/issues"
[tool.black]
line-length = 100
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]