-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (33 loc) · 1.04 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
[tool.poetry]
name = "spiderexpress_tiktok"
version = "0.1.1a0"
description = "TikTok plugin for spiderexpress"
authors = ["Philipp Kessling"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10"
click = "*"
loguru = "*"
PyYAML = "*"
researchtikpy = {git = "https://github.com/pekasen/ResearchTikPy"}
spiderexpress = {git = "https://github.com/Leibniz-HBI/spiderexpress.git", rev="97-fix-sqlite-db-locked-and-crashes"}
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
black = "*"
coverage = "*"
pdoc3 = "*"
pre-commit = "*"
isort = "*"
pylint = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."spiderexpress.connectors"]
"tiktok/followers" = "spiderexpress_tiktok.spiderexpress_tiktok:followers_entrypoint"
"tiktok/followings" = "spiderexpress_tiktok.spiderexpress_tiktok:followings_entrypoint"
[tool.pytest.ini_options]
addopts = "--cov-report html:tests/coverage --cov=spiderexpress_tiktok --capture=sys"
[tool.isort]
profile = "black"
[tool.poetry.scripts]