misc improvements
This commit is contained in:
parent
363e436f25
commit
a2683b9263
4 changed files with 3 additions and 8 deletions
|
@ -3,11 +3,6 @@ kind: pipeline
|
|||
type: kubernetes
|
||||
name: python
|
||||
|
||||
host_aliases:
|
||||
- ip: 192.168.0.210
|
||||
hostnames:
|
||||
- git.fqserv.eu
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: python:latest
|
||||
|
|
|
@ -5,7 +5,7 @@ ENV TZ=Europe/Paris
|
|||
|
||||
RUN apk add --no-cache --update tzdata supercronic && \
|
||||
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
|
||||
pip install -q tenkan && \
|
||||
pip install --no-cache-dir -q tenkan && \
|
||||
mkdir -p /data/rss && \
|
||||
echo "*/15 * * * * tenkan --feedsfile /etc/feeds.json --config /etc/tenkan.conf update" > /crontab
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "tenkan"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
description = "RSS/atom feed converter from html to gemini"
|
||||
authors = ["Quentin Ferrand <quentin.ferrand@protonmail.com>"]
|
||||
readme = 'README.md'
|
||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ here = os.path.abspath(os.path.dirname(__file__))
|
|||
|
||||
setup(
|
||||
name='tenkan',
|
||||
version='0.2.2',
|
||||
version='0.2.3',
|
||||
long_description=open('README.md').read(),
|
||||
description='RSS/atom feed converter from html to gemini',
|
||||
long_description_content_type='text/markdown',
|
||||
|
|
Loading…
Reference in a new issue