-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.48 KB
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
[project]
name = "tiktok-uploader"
version = "1.2.0"
authors = [
{ name = "William Kaiser", email = "wkaisertexas@gmail.com" },
]
description = "An automatic TikTok video uploader w/ CLI. Uploads videos automatically using an automated browser and your cookies for authentication."
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"Selenium",
"Automation",
"TikTok",
"Video",
"Python",
"Upload",
"CLI",
"Command Line",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"playwright>=1.58.0",
"pydantic>=2.10.6",
"pytz>=2025.2",
"toml>=0.10.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"freezegun>=0.3.15",
"mypy>=0.720",
"pandas-stubs>=2.3.0.250703",
"pytest>=4.6.11",
"ruff>=0.0.17",
"types-pytz>=2025.2.0.20250516",
"types-toml>=0.10.8.20240310",
]
types = [
"pandas-stubs>=1.2.0.62",
"types-pexpect>=4.8.0.1",
"types-pygments>=2.16.0.0",
"types-pymysql>=1.1.0.1",
"types-python-dateutil>=2.8.19.14",
"types-pytz>=2023.3.1.1",
"types-requests>=2.31.0.5",
"types-toml>=0.10.8.7",
]
[project.scripts]
tiktok-uploader = "tiktok_uploader.cli:main"
tiktok-auth = "tiktok_uploader.cli:auth"
[project.urls]
"Source Code" = "https://github.com/wkaisertexas/tiktok-uploader"
"Bug Tracker" = "https://github.com/wkaisertexas/tiktok-uploader/issues"