-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.py
27 lines (26 loc) · 899 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="kling-creator",
version="0.3.3",
author="yihong0618",
author_email="[email protected]",
description="High quality video generation by https://klingai.kuaishou.com/. Reverse engineered API.",
url="https://github.com/yihong0618/klingCreator",
install_requires=[
"requests",
"fake-useragent",
"rich",
],
packages=find_packages(exclude=["tests", "tests.*"]),
entry_points={
"console_scripts": ["kling = kling.kling:main"],
},
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)