-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to work with new pychromecast API. - Fix reboot (at least on 1st gen chromecasts). - Fix jumpy slider when watching some streams (like hulu). - Update pyproject.toml to use latest flit features.
- Loading branch information
Showing
2 changed files
with
103 additions
and
47 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 |
---|---|---|
@@ -1,21 +1,30 @@ | ||
[build-system] | ||
build-backend = "flit.buildapi" | ||
build-backend = "flit_core.buildapi" | ||
requires=[ | ||
"six", | ||
"flit", | ||
"flit_core >=3.2,<4", | ||
"catt", | ||
"cattqt", | ||
"pyqt5", | ||
"pychromecast >=3.2.3", | ||
"chardet >=3.0.4", | ||
"pychromecast >=12.1.4", | ||
] | ||
requires-python="3" | ||
|
||
[tool.flit.metadata] | ||
module = "cattqt" | ||
author = "Scott Moreau" | ||
author-email = "[email protected]" | ||
home-page = "https://github.com/soreau/catt-qt" | ||
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"] | ||
description-file="README.rst" | ||
[project] | ||
name = "cattqt" | ||
requires-python = ">=3.0" | ||
readme = "README.rst" | ||
authors = [ | ||
{name = "Scott Moreau", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
] | ||
dynamic = ["version", "description"] | ||
|
||
[tool.flit.scripts] | ||
catt-qt = "cattqt:main" | ||
[project.urls] | ||
Source = "https://github.com/soreau/catt-qt" | ||
|
||
[project.scripts] | ||
catt-qt = "cattqt:main" |