5 Star 0 Fork 7

src-openEuler/python-pylast

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-add-setup.py.patch 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
无名 提交于 2022-11-07 15:43 . update version to 5.1.0
--- c/setup.py 1970-01-01 08:00:00.000000000 +0800
+++ a/setup.py 2022-11-07 15:41:34.959687524 +0800
@@ -0,0 +1,48 @@
+from setuptools import find_packages, setup
+
+with open("README.md") as f:
+ long_description = f.read()
+
+
+def local_scheme(version):
+ """Skip the local version (eg. +xyz of 0.6.1.dev4+gdf99fe2)
+ to be able to upload to Test PyPI"""
+ return ""
+
+
+setup(
+ name="pylast",
+ description="A Python interface to Last.fm and Libre.fm",
+ long_description=long_description,
+ long_description_content_type="text/markdown",
+ author="Amr Hassan <amr.hassan@gmail.com> and Contributors",
+ author_email="amr.hassan@gmail.com",
+ url="https://github.com/pylast/pylast",
+ license="Apache-2.0",
+ keywords=["Last.fm", "music", "scrobble", "scrobbling"],
+ packages=find_packages(where="src"),
+ package_dir={"": "src"},
+ use_scm_version={"local_scheme": local_scheme},
+ setup_requires=["setuptools_scm"],
+ extras_require={
+ "tests": ["flaky", "pytest", "pytest-cov", "pytest-random-order", "pyyaml"]
+ },
+ python_requires=">=3.7",
+ classifiers = [
+ "Development Status :: 5 - Production/Stable",
+ "License :: OSI Approved :: Apache Software License",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3 :: Only",
+ "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",
+ "Programming Language :: Python :: Implementation :: CPython",
+ "Programming Language :: Python :: Implementation :: PyPy",
+ "Topic :: Internet",
+ "Topic :: Multimedia :: Sound/Audio",
+ "Topic :: Software Development :: Libraries :: Python Modules",
+]
+
+)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/python-pylast.git
git@gitee.com:src-openeuler/python-pylast.git
src-openeuler
python-pylast
python-pylast
master

搜索帮助