Skip to content

Commit fc118c5

Browse files
committed
bump version 0.4.14
1 parent 83f797d commit fc118c5

3 files changed

Lines changed: 7 additions & 33 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Please make sure to compatible with [FeelUOwn](https://github.com/feeluown/FeelU
3737
- [ ] Discovering page
3838

3939
## Changelog
40+
- v0.4.14 (2026-01-26)
41+
- 支持 Python 3.14
42+
- 使用 uv + pyproject.toml 来管理项目
4043
- v0.4.13 (2025-12-13)
4144
- 修复登录功能
4245
- 使用 ruff 格式化代码

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fuo-ytmusic"
3-
version = "0.4.13"
3+
version = "0.4.14"
44
description = "feeluown Youtube Music plugin"
55
readme = "README.md"
66
requires-python = ">=3.8,<4.0"

setup.py

Lines changed: 3 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,5 @@
1-
# -*- coding: utf-8 -*-
21
from setuptools import setup
32

4-
packages = \
5-
['fuo_ytmusic']
6-
7-
package_data = \
8-
{'': ['*'], 'fuo_ytmusic': ['assets/*', 'qml/*', 'qml/dummydata/*']}
9-
10-
install_requires = \
11-
['cachetools', 'feeluown>=3.8.12', 'pydantic>=2.0,<3.0', 'ytmusicapi', 'yt-dlp']
12-
13-
entry_points = \
14-
{'fuo.plugins_v1': ['ytmusic = fuo_ytmusic']}
15-
16-
setup_kwargs = {
17-
'name': 'fuo-ytmusic',
18-
'version': '0.4.13',
19-
'description': 'feeluown Youtube Music plugin',
20-
'long_description': "# YouTube Music plugin for FeelUOwn player\n\n## Prerequisites\n\nInstall [FeelUOwn](https://github.com/feeluown/FeelUOwn) before installing this plugin.\nSees: [Documentation](https://feeluown.readthedocs.io/)\n\n## Installation\n\n```shell\npip install fuo-ytmusic # Lastest stable release\npip install https://github.com/feeluown/feeluown-ytmusic.git # master branch\nuv sync # Local development\n```\n\n## Configuration\n\n### Proxies\n\n```python\n# In ~/.fuorc\nconfig.deffield('YTM_HTTP_PROXY', type_=str, default='', desc='YouTube Music 代理设置')\nconfig.YTM_HTTP_PROXY='127.0.0.1:10809'\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please create a new issue first to discuss what you'd like to change.\n\nPlease make sure to compatible with [FeelUOwn](https://github.com/feeluown/FeelUOwn) lastest stable release.\n\n## License\n\nThis project is licensed under the [GPLv3](LICENSE.txt).\n",
21-
'author': 'Bruce Zhang',
22-
'author_email': 'zttt183525594@gmail.com',
23-
'maintainer': None,
24-
'maintainer_email': None,
25-
'url': 'https://github.com/feeluown/feeluown-ytmusic',
26-
'packages': packages,
27-
'package_data': package_data,
28-
'install_requires': install_requires,
29-
'entry_points': entry_points,
30-
'python_requires': '>=3.8,<4.0',
31-
}
32-
33-
34-
setup(**setup_kwargs)
3+
# Metadata and build config live in pyproject.toml; this is a legacy shim.
4+
if __name__ == "__main__":
5+
setup()

0 commit comments

Comments
 (0)