-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
35 lines (34 loc) · 1.14 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
from setuptools import find_packages, setup
setup(
name="suno_songs",
version="0.6.0",
author="yihong0618",
author_email="[email protected]",
description="High quality songs generation by suno.ai. Reverse engineered API.",
url="https://github.com/yihong0618/SunoSongsCreator",
project_urls={
"Bug Report": "https://github.com/yihong0618/SunoSongsCreator/issues/new",
},
install_requires=[
"curl_cffi",
"requests",
"fake-useragent",
"rich",
"python-dotenv",
],
packages=find_packages(),
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": ["suno = suno.suno: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",
"Programming Language :: Python :: 3.12",
],
)