-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.15 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
[project]
name = "tegracli"
version = "0.3.0"
description = "A research-focused Telegram CLI application"
authors = [
{ name = "Philipp Kessling", email = "[email protected]" },
{ name = "Felix Münch", email = "[email protected]"}
]
readme = "README.md"
license = "MIT"
repository = "https://github.com/Leibniz-HBI/tegracli"
homepage = "https://pypi.org/project/tegracli/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.9"
dependencies = [
"Telethon",
"ujson",
"click",
"loguru",
"PyYAML",
"pandas (>=2.2.3); python_version >= '3.13'",
]
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-socket = "*"
pytest-asyncio = "*"
black = "*"
isort = "*"
pytest-cov = "*"
coverage = "*"
pydocstyle = "*"
pylint = "*"
pre-commit = "*"
[tool.pytest.ini_options]
addopts = "--disable-socket --cov-report html:tests/coverage --cov=tegracli --capture=sys"
asyncio_mode = "strict"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
tegracli = 'tegracli.main:cli'
[tool.isort]
profile = "black"