forked from danaigc/DreamMachineAPI
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (25 loc) · 855 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
from setuptools import find_packages, setup
setup(
name="luma-creator",
version="0.0.4",
author="danaigc, yihong0618",
author_email="zouzou0208@gmail.com",
description="High quality video generation by https://lumalabs.ai/. Reverse engineered API.",
url="https://github.com/yihong0618/LumaDreamCreator",
install_requires=[
"requests",
"fake-useragent",
],
packages=find_packages(),
entry_points={
"console_scripts": ["luma = luma.luma: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",
],
)