turned it into a package

This commit is contained in:
2021-10-07 22:20:12 +02:00
parent 0dfa4c45af
commit 86bc41a2f2
7 changed files with 44 additions and 7 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
from setuptools import setup
setup(
name="extract-audio",
version="0.1",
packages=["app"],
description="Extract audio from a directory of video files.",
author="Zev Averbach",
author_email="zev@averba.ch",
url="https://github.com/zevaverbach/extract_audio_from_video",
entry_points={
"console_scripts": [
"extract=app.extract_audio:main",
]
},
)