-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
66 lines (54 loc) · 1.23 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
[tool.poetry]
name = "neonize"
version = "8.0.0"
description = "whatsmeow binder for python"
authors = ["krypton-byte <rosid6434@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
exclude = [
"docs/",
"goneonize/"
]
include = [
"neonize/neonize-*"
]
[tools.pyright]
[tool.poetry.dependencies]
python = ">=3.10"
protobuf = "^4.25.1"
pillow = "^10.1.0"
requests = "^2.31.0"
phonenumbers = "^8.13.27"
linkpreview = "^0.8.3"
segno = "^1.6.0"
python-magic = [
{ version = "0.4.27", markers = "platform_system != 'Windows'"}
]
python-magic-bin = [
{ version = '0.4.14', markers = "platform_system == 'Windows'" },
]
tqdm = "^4.66.1"
httpx = "^0.27.2"
aiomonitor = "^0.7.0"
setuptools = "^75.2.0"
[tool.mypy]
exclude = [
"_pb2.py"
]
ignore_missing_imports = true
[tool.poetry.group.dev.dependencies]
segno = "^1.6.0"
mypy-protobuf = "^3.5.0"
types-requests = "^2.31.0.20240106"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.7"
myst-parser = "^2.0.0"
sphinx-autodoc-typehints = "^2.1.1"
furo = "^2024.5.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
docsbuild = "docs.build:build"
build = "goneonize.__main__:build"
version = "goneonize.__main__:set_version"