Compare commits
8 Commits
2080c21898
...
760e12889c
Author | SHA1 | Date | |
---|---|---|---|
760e12889c | |||
7d14fef3f5 | |||
65b1d17253 | |||
b57991c3ce | |||
17203825ed | |||
e97ee0ea13 | |||
68919e2c35 | |||
03e094a497 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -160,3 +160,5 @@ cython_debug/
|
|||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# setuptools-scm
|
||||||
|
_version.py
|
||||||
|
36
.woodpecker.yml
Normal file
36
.woodpecker.yml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
labels:
|
||||||
|
platform: linux/amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
build:
|
||||||
|
image: python
|
||||||
|
commands:
|
||||||
|
- python -m pip install hatch requests
|
||||||
|
- python -m unittest
|
||||||
|
- hatch build
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: tag
|
||||||
|
|
||||||
|
publish-gitea:
|
||||||
|
image: gitea.elara.ws/music-kraken/plugin-twine
|
||||||
|
settings:
|
||||||
|
repository_url: "https://gitea.elara.ws/api/packages/music-kraken/pypi"
|
||||||
|
username:
|
||||||
|
from_secret: gitea_username
|
||||||
|
password:
|
||||||
|
from_secret: gitea_password
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: tag
|
||||||
|
|
||||||
|
publish-pypi:
|
||||||
|
image: gitea.elara.ws/music-kraken/plugin-twine
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: pypi_username
|
||||||
|
password:
|
||||||
|
from_secret: pypi_password
|
||||||
|
when:
|
||||||
|
- event: manual
|
||||||
|
- event: tag
|
@ -1,5 +1,7 @@
|
|||||||
# Python Sponsorblock
|
# Python Sponsorblock
|
||||||
|
|
||||||
|
[![status-badge](https://ci.elara.ws/api/badges/61/status.svg)](https://ci.elara.ws/repos/61)
|
||||||
|
|
||||||
<img src="https://gitea.elara.ws/music-kraken/python-sponsorblock/raw/branch/main/assets/logo.svg" width=300 alt="python-sponsorblock logo"/>
|
<img src="https://gitea.elara.ws/music-kraken/python-sponsorblock/raw/branch/main/assets/logo.svg" width=300 alt="python-sponsorblock logo"/>
|
||||||
|
|
||||||
This is a wrapper for the sponsorblock api, enabling you to get the timestamps of sponsor segments from Youtube videos.
|
This is a wrapper for the sponsorblock api, enabling you to get the timestamps of sponsor segments from Youtube videos.
|
||||||
@ -8,7 +10,7 @@ This is a wrapper for the sponsorblock api, enabling you to get the timestamps o
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# using this gitea repository (recommended)
|
# using this gitea repository (recommended)
|
||||||
pip install --index-url https://gitea.elara.ws/api/packages/music-kraken/pypi/simple/ music-kraken
|
pip install --index-url https://gitea.elara.ws/api/packages/music-kraken/pypi/simple/ python-sponsorblock
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -12,7 +12,16 @@ include = ["python_sponsorblock/*.py", "python_sponsorblock/**/*.py" ]
|
|||||||
packages = ["python_sponsorblock"]
|
packages = ["python_sponsorblock"]
|
||||||
|
|
||||||
[tool.hatch.version]
|
[tool.hatch.version]
|
||||||
path = "python_sponsorblock/__about__.py"
|
source = "vcs"
|
||||||
|
path = "python_sponsorblock/_version.py"
|
||||||
|
fallback-version = "0.0.0"
|
||||||
|
|
||||||
|
[tool.hatch.version.raw-options]
|
||||||
|
local_scheme = "no-local-version"
|
||||||
|
|
||||||
|
[tool.hatch.build.hooks.vcs]
|
||||||
|
version-file = "python_sponsorblock/_version.py"
|
||||||
|
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "python-sponsorblock"
|
name = "python-sponsorblock"
|
||||||
|
@ -1 +0,0 @@
|
|||||||
__version__ = '0.0.0'
|
|
Loading…
Reference in New Issue
Block a user