get_peertube_videos/setup.py
2024-11-19 11:54:20 +02:00

23 lines
697 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Setup script"""
import configparser
import setuptools
config = configparser.ConfigParser()
config.read('setup.cfg')
setuptools.setup(
scripts=['get_peertube_videos/get_peertube_videos.py'],
author="Antonio J. Delgado",
version=config['metadata']['version'],
name=config['metadata']['name'],
author_email="ad@susurrando.com",
url="https://repos.susurrando.com/adelgado/get_peertube_videos",
description="Get PeerTube videos from a series of channel's feeds",
long_description="README.md",
long_description_content_type="text/markdown",
license="GPLv3",
# keywords=["my", "script", "does", "things"]
)