update pypi description + docker links

This commit is contained in:
ed 2023-02-16 19:56:57 +00:00
parent 6c0987d4d0
commit 5e7c3defe3
2 changed files with 12 additions and 9 deletions

View file

@ -1,5 +1,5 @@
copyparty is availabe in these repos: copyparty is availabe in these repos:
* https://hub.docker.com/r/copyparty * https://hub.docker.com/u/copyparty
* https://github.com/9001?tab=packages&repo_name=copyparty * https://github.com/9001?tab=packages&repo_name=copyparty
@ -32,13 +32,13 @@ the recommended way to configure copyparty inside a container is to mount a fold
with image size after installation and when gzipped with image size after installation and when gzipped
* `min` (57 MiB, 20 gz) is just copyparty itself * [`min` (57 MiB, 20 gz)](https://hub.docker.com/r/copyparty/min) is just copyparty itself
* `im` (70 MiB, 25 gz) can thumbnail images with pillow, parse media files with mutagen * [`im` (70 MiB, 25 gz)](https://hub.docker.com/r/copyparty/im) can thumbnail images with pillow, parse media files with mutagen
* `ac` (163 MiB, 56 gz) is `im` plus ffmpeg for video/audio thumbs + audio transcoding + better tags * [`ac` (163 MiB, 56 gz)](https://hub.docker.com/r/copyparty/ac) is `im` plus ffmpeg for video/audio thumbs + audio transcoding + better tags
* `iv` (211 MiB, 73 gz) is `ac` plus vips for faster heif / avic / jxl thumbnails * [`iv` (211 MiB, 73 gz)](https://hub.docker.com/r/copyparty/iv) is `ac` plus vips for faster heif / avic / jxl thumbnails
* `dj` (309 MiB, 104 gz) is `iv` plus beatroot/keyfinder to detect musical keys and bpm * [`dj` (309 MiB, 104 gz)](https://hub.docker.com/r/copyparty/dj) is `iv` plus beatroot/keyfinder to detect musical keys and bpm
`ac` is recommended since the additional features available in `iv` and `dj` are rarely useful [`ac` is recommended](https://hub.docker.com/r/copyparty/ac) since the additional features available in `iv` and `dj` are rarely useful
## detecting bpm and musical key ## detecting bpm and musical key

View file

@ -4,7 +4,6 @@ from __future__ import print_function
import os import os
import sys import sys
import subprocess as sp
from shutil import rmtree from shutil import rmtree
from setuptools import setup, Command from setuptools import setup, Command
@ -78,7 +77,11 @@ class clean2(Command):
args = { args = {
"name": NAME, "name": NAME,
"version": about["__version__"], "version": about["__version__"],
"description": "http file sharing hub", "description": (
"Portable file server with accelerated resumable uploads, "
+ "deduplication, WebDAV, FTP, zeroconf, media indexer, "
+ "video thumbnails, audio transcoding, and write-only folders"
),
"long_description": long_description, "long_description": long_description,
"long_description_content_type": "text/markdown", "long_description_content_type": "text/markdown",
"author": "ed", "author": "ed",