-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (70 loc) · 1.75 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
77
78
79
[tool.poetry]
name = "opengm"
version = "0.0.1"
description = "Open source group manager, previously part of openSUSE defrag"
authors = ["Onuralp SEZER <[email protected]>","Jens <[email protected]>",]
maintainers = [
"Jens <[email protected]>",
"Onuralp SEZER <[email protected]>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/openSUSE/opengm"
repository = "https://github.com/openSUSE/opengm"
documentation = "https://github.com/openSUSE/opengm/blob/main/README.md"
packages = [{include = "opengm"}]
keywords = ["telegram-bot","opengm","bot","pyrogram"]
classifiers = [
"Development Status :: 4 - Alpha",
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.97.0"
pyrogram = "^2.0.106"
uvicorn = "^0.22.0"
redis = "^4.5.5"
sqlalchemy = "^2.0.16"
tgcrypto = "^1.2.5"
async-lru = "^2.0.2"
beautifulsoup4 = "^4.12.2"
python-bugzilla = "^3.2.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.2"
black = "^22.12.0"
mypy = "^0.991"
requests = "^2.28.2"
ruff = "^0.0.238"
isort = "^5.12.0"
[tool.bandit]
tests = ["B201", "B301"]
[tool.isort]
line_length = 79
profile = "black"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
opengm = "opengm.main:main"