-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from Erotemic/add_dunder_version
Move __version__ single source of truth to package __init__
- Loading branch information
Showing
3 changed files
with
35 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[build-system] | ||
requires = [ "setuptools>=61.0.0",] | ||
|
||
[project] | ||
name = "jellyfin-apiclient-python" | ||
authors = [ | ||
{name = "Ian Walton", email = "[email protected]"}, | ||
] | ||
dynamic = ["version"] | ||
description = "Python API client for Jellyfin" | ||
readme = "README.md" | ||
license = {file = "LICENSE.md"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python='>=3.6' | ||
dependencies=[ | ||
'requests', | ||
'urllib3', | ||
'websocket_client', | ||
'certifi' | ||
] | ||
|
||
[project.urls] | ||
Repository = "https://github.com/iwalton3/jellyfin-apiclient-python" | ||
|
||
[tool.setuptools] | ||
packages = ["jellyfin_apiclient_python"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "jellyfin_apiclient_python.__version__"} |