-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 793 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 793 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ResearchTikPy"
version = "0.2.2"
authors = [
{ name="Julian Hohner", email="daswaeldchen@gmail.com" },
]
description = "Python API wrapper for the TikTok Research API"
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"requests",
"pandas",
"tqdm",
"pydantic",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"isort"
]
[project.urls]
Homepage = "https://github.com/HohnerJulian/ResearchTikPy"
[tool.pytest.ini_options]
addopts = "-vv --capture=no"
log_cli = true
log_cli_level = "INFO"