forked from wkaisertexas/tiktok-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.03 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
[project]
name = "tiktok-uploader"
version = "1.0.1"
authors = [
{ name = "William Kaiser", email = "[email protected]" },
]
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.0"
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 = [
"selenium",
"webdriver_manager",
"toml"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
test = [
"pytest",
]
[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"