mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-05-23 19:17:41 +08:00
25 lines
715 B
Python
25 lines
715 B
Python
from setuptools import setup
|
|
import toml
|
|
|
|
try:
|
|
version = toml.load("./pyproject.toml")["tool"]["poetry"]["version"]
|
|
description = toml.load("./pyproject.toml")["tool"]["poetry"]["description"]
|
|
except Exception:
|
|
version = "1.0.0"
|
|
description = "Description not available"
|
|
|
|
setup(
|
|
name="lx_music_api_server_setup",
|
|
version=version,
|
|
scripts=["run.py"],
|
|
author="helloplhm-qwq",
|
|
author_email="helloplhm-qwq@outlook.com",
|
|
description=description,
|
|
url="https://github.com/helloplhm-qwq/lx-music-api-server",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|