diff --git a/.gitignore b/.gitignore index 56d875b..6e504d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ -venv .cache -tests/dummy2.mp4 +dist/ +ffmpeg/tests/dummy2.mp4 +venv diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fdf8be6 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2017 Karl Kroening + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..0da4f28 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,4 @@ +# file GENERATED by distutils, do NOT edit +README +setup.py +ffmpeg/__init__.py diff --git a/README.md b/README similarity index 96% rename from README.md rename to README index 9c78c81..f662b61 100644 --- a/README.md +++ b/README @@ -1,4 +1,4 @@ -# ffmpeg-python: Powerfully simple A/V routing with Python +# ffmpeg-python: FFmpeg Python wrapper with support for complex filtering ## Overview @@ -59,4 +59,3 @@ ffmpeg.concat( `ffmpeg-python` takes care of running `ffmpeg` with the command-line arguments that correspond to the above filter diagram, and it's easy to what's going on and make changes as needed. Real-world signal graphs can get a heck of a lot more complex, but `ffmpeg-python` handles them with ease. - diff --git a/ffmpeg.py b/ffmpeg/ffmpeg.py similarity index 100% rename from ffmpeg.py rename to ffmpeg/ffmpeg.py diff --git a/tests/__init__.py b/ffmpeg/tests/__init__.py similarity index 100% rename from tests/__init__.py rename to ffmpeg/tests/__init__.py diff --git a/tests/dummy.mp4 b/ffmpeg/tests/dummy.mp4 similarity index 100% rename from tests/dummy.mp4 rename to ffmpeg/tests/dummy.mp4 diff --git a/tests/test_ffmpeg.py b/ffmpeg/tests/test_ffmpeg.py similarity index 100% rename from tests/test_ffmpeg.py rename to ffmpeg/tests/test_ffmpeg.py diff --git a/pytest.ini b/pytest.ini index 2423407..9ce90f2 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,3 @@ [pytest] -testpaths = tests +testpaths = ffmpeg/tests #norecursedirs = venv .git diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..49f9eef --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +from distutils.core import setup +setup( + name = 'ffmpeg-python', + packages = ['ffmpeg'], + version = '0.1', + description = 'FFmpeg Python wrapper with support for complex filtering', + author = 'Karl Kroening', + author_email = 'karlk@kralnet.us', + url = 'https://github.com/kkroening/ffmpeg-python', + download_url = 'https://github.com/peterldowns/mypackage/archive/0.1.tar.gz', + keywords = [ + 'a/v', + 'audio', + 'dsp', + 'FFmpeg', + 'ffmpeg', + 'ffprobe', + 'filtering', + 'render', + 'signals', + 'streaming', + 'streams', + 'video', + 'wrapper', + ], + classifiers = [], +)