Working on packaging and related docs
This commit is contained in:
parent
2cc061bada
commit
615fd0d419
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,6 +2,7 @@
|
|||||||
test.sh
|
test.sh
|
||||||
renamelist.txt
|
renamelist.txt
|
||||||
.vscode
|
.vscode
|
||||||
|
/build
|
||||||
|
|
||||||
# Docs build data
|
# Docs build data
|
||||||
/docsource/build/
|
/docsource/build/
|
||||||
|
|||||||
@ -10,7 +10,7 @@ MediaCurator is a Python command line tool to manage a media database.
|
|||||||
The documentation is available on the following [link](https://fabquenneville.github.io/MediaCurator/)
|
The documentation is available on the following [link](https://fabquenneville.github.io/MediaCurator/)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
./curator.py [list,convert] [-del] [-in:any,avi,mkv,wmv,mpg,mp4,m4v,flv,vid] [-filters:fferror,old,lowres,hd,720p,1080p,uhd,mpeg,mpeg4,x264,wmv3,wmv] [-out:mkv/mp4,x265/av1] [-print:list,formated,verbose] [-dir/-files:"/mnt/media/",,"/mnt/media2/"]
|
mediacurator [list,convert] [-del] [-in:any,avi,mkv,wmv,mpg,mp4,m4v,flv,vid] [-filters:fferror,old,lowres,hd,720p,1080p,uhd,mpeg,mpeg4,x264,wmv3,wmv] [-out:mkv/mp4,x265/av1] [-print:list,formated,verbose] [-dir/-files:"/mnt/media/",,"/mnt/media2/"]
|
||||||
|
|
||||||
> for multiple files or filenames use double comma separated values ",,"
|
> for multiple files or filenames use double comma separated values ",,"
|
||||||
|
|
||||||
@ -22,9 +22,9 @@ default options are:
|
|||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
```bash
|
```bash
|
||||||
./curator.py list -filters:old -print:formated -dir:/mnt/media/ >> ../medlist.txt
|
mediacurator list -filters:old -print:formated -dir:/mnt/media/ >> ../medlist.txt
|
||||||
./curator.py convert -del -filters:mpeg4 -out:av1,mp4 -dir:"/mnt/media/Movies/"
|
mediacurator convert -del -filters:mpeg4 -out:av1,mp4 -dir:"/mnt/media/Movies/"
|
||||||
./curator.py convert -del -in:avi,mpg -print:formated,verbose -dir:/mnt/media/
|
mediacurator convert -del -in:avi,mpg -print:formated,verbose -dir:/mnt/media/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -15,4 +15,4 @@ Install from GitHub
|
|||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
:linenos:
|
:linenos:
|
||||||
|
|
||||||
pip install mediacurator
|
pip install MediaCurator
|
||||||
|
|||||||
7
setup.py
7
setup.py
@ -11,10 +11,15 @@ setuptools.setup(
|
|||||||
author="Fabrice Quenneville",
|
author="Fabrice Quenneville",
|
||||||
author_email="fab@fabq.ca",
|
author_email="fab@fabq.ca",
|
||||||
url="https://github.com/fabquenneville/MediaCurator",
|
url="https://github.com/fabquenneville/MediaCurator",
|
||||||
|
download_url="https://pypi.python.org/pypi/MediaCurator",
|
||||||
|
project_urls={
|
||||||
|
"Bug Tracker": "https://github.com/fabquenneville/MediaCurator/issues",
|
||||||
|
"Documentation": "https://fabquenneville.github.io/MediaCurator/",
|
||||||
|
"Source Code": "https://github.com/fabquenneville/MediaCurator",
|
||||||
|
},
|
||||||
description="MediaCurator is a Python command line tool to manage a media database.",
|
description="MediaCurator is a Python command line tool to manage a media database.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
download_url="TBD",
|
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Topic :: Multimedia :: Video :: Conversion",
|
"Topic :: Multimedia :: Video :: Conversion",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user