-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
pyproject.toml
40 lines (36 loc) · 1.02 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "GramAddict"
authors = [{ name = "GramAddict Team", email = "[email protected]" }]
readme = "README.md"
classifiers = [
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
license = { file = "LICENSE" }
requires-python = ">=3.6"
dynamic = ["version", "description"]
dependencies = [
"colorama==0.4.4",
"ConfigArgParse==1.5.3",
"PyYAML==6.0.1",
"uiautomator2==2.16.14",
"urllib3==1.26.18",
"emoji==1.6.1",
"langdetect==1.0.9",
"atomicwrites==1.4.0",
"spintax==1.0.4",
"requests~=2.31.0",
"packaging~=20.9"
]
[project.optional-dependencies]
analytics = ["matplotlib==3.4.2"]
dev = ["flit", "pre-commit", "black", "flake8", "isort", "ruff"]
[project.urls]
Documentation = "https://docs.gramaddict.org/#/"
Source = "https://github.com/GramAddict/bot"
[project.scripts]
gramaddict = "GramAddict.__main__:main"