We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9bf77 commit 443628cCopy full SHA for 443628c
README.md
@@ -3,6 +3,11 @@
3
[](https://github.com/scivision/asyncio-subprocess-ffmpeg/actions)
4
5
Examples of Python asyncio.subprocess with FFmpeg and also traditional synchronous processes.
6
+We use `src/` Python layout to demonstrate general good packaging practice, so to use the scripts:
7
+
8
+```sh
9
+pip install -e .
10
+```
11
12
## Coroutine vs Threads vs processes
13
setup.py
@@ -1,4 +1,8 @@
1
-#!/usr/bin/env python
+#!/usr/bin/env python3
2
+import site
import setuptools
+# PEP517 workaround
+site.ENABLE_USER_SITE = True
setuptools.setup()
0 commit comments