forked from isaackogan/TikTokLive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.58 KB
/
setup.py
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# PyPi upload Command
# rm -r dist ; python setup.py sdist ; python -m twine upload dist/*
setuptools.setup(
name="TikTokLive",
packages=setuptools.find_packages(),
version="5.0.8",
license="MIT",
description="TikTok Live Connection Client",
author="Isaac Kogan",
author_email="info@isaackogan.com",
url="https://github.com/isaackogan/TikTokLive",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://github.com/isaackogan/TikTokLive/releases/tag/v5.0.8",
keywords=["tiktok", "tiktok live", "python3", "api", "unofficial"],
install_requires=[
"httpx>=0.23.0", # Make requests
"protobuf3-to-dict>=0.1.5", # Convert Protobuf to Dict
"protobuf>=3.19.4", # Decode Protobuf Messages
"pyee>=9.0.4", # Event Emitter
"ffmpy>=0.3.0", # Download streams
"mashumaro>=3.5", # JSON Deserialization
"websockets>=10.4" # Connecting to websocket server
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
)