Publish to pypi

This commit is contained in:
Karl Kroening 2017-05-13 22:57:34 -10:00
parent ba70517eb3
commit 48e9aff9fa
10 changed files with 49 additions and 5 deletions

5
.gitignore vendored
View File

@ -1,3 +1,4 @@
venv
.cache
tests/dummy2.mp4
dist/
ffmpeg/tests/dummy2.mp4
venv

13
LICENSE Normal file
View File

@ -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.

4
MANIFEST Normal file
View File

@ -0,0 +1,4 @@
# file GENERATED by distutils, do NOT edit
README
setup.py
ffmpeg/__init__.py

View File

@ -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.

View File

@ -1,3 +1,3 @@
[pytest]
testpaths = tests
testpaths = ffmpeg/tests
#norecursedirs = venv .git

27
setup.py Normal file
View File

@ -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 = [],
)