Skip to content

Commit 48e9aff

Browse files
committed
Publish to pypi
1 parent ba70517 commit 48e9aff

10 files changed

Lines changed: 49 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
venv
21
.cache
3-
tests/dummy2.mp4
2+
dist/
3+
ffmpeg/tests/dummy2.mp4
4+
venv

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2017 Karl Kroening
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

MANIFEST

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# file GENERATED by distutils, do NOT edit
2+
README
3+
setup.py
4+
ffmpeg/__init__.py

README.md renamed to README

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ffmpeg-python: Powerfully simple A/V routing with Python
1+
# ffmpeg-python: FFmpeg Python wrapper with support for complex filtering
22

33
## Overview
44

@@ -59,4 +59,3 @@ ffmpeg.concat(
5959
`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.
6060

6161
Real-world signal graphs can get a heck of a lot more complex, but `ffmpeg-python` handles them with ease.
62-
File renamed without changes.
File renamed without changes.

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[pytest]
2-
testpaths = tests
2+
testpaths = ffmpeg/tests
33
#norecursedirs = venv .git

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'ffmpeg-python',
4+
packages = ['ffmpeg'],
5+
version = '0.1',
6+
description = 'FFmpeg Python wrapper with support for complex filtering',
7+
author = 'Karl Kroening',
8+
author_email = 'karlk@kralnet.us',
9+
url = 'https://github.com/kkroening/ffmpeg-python',
10+
download_url = 'https://github.com/peterldowns/mypackage/archive/0.1.tar.gz',
11+
keywords = [
12+
'a/v',
13+
'audio',
14+
'dsp',
15+
'FFmpeg',
16+
'ffmpeg',
17+
'ffprobe',
18+
'filtering',
19+
'render',
20+
'signals',
21+
'streaming',
22+
'streams',
23+
'video',
24+
'wrapper',
25+
],
26+
classifiers = [],
27+
)

0 commit comments

Comments
 (0)