Browse code

Add implementation

Robert Cranston authored on 04/06/2020 17:59:34
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,27 @@
1
+from setuptools import setup
2
+
3
+with open("README.md") as f:
4
+    long_description = f.read()
5
+
6
+setup(
7
+    name='pyffstream',
8
+    version='1.0.0',
9
+    description="Python library to ease processing of video frames",
10
+    long_description=long_description,
11
+    long_description_content_type='text/markdown',
12
+    url='https://git.rcrnstn.net/rcrnstn/pyffstream',
13
+    author="Robert Cranston",
14
+    keywords='ffmpeg opencv',
15
+    classifiers=[
16
+        'Programming Language :: Python :: 3',
17
+        'License :: OSI Approved :: ISC License (ISCL)',
18
+    ],
19
+    python_requires='>=3.3, <4',  # shlex.quote
20
+    install_requires=[
21
+        'ffmpeg-python',
22
+        'numpy',
23
+        'Pillow',
24
+        'opencv-python',
25
+    ],
26
+    py_modules=['pyffstream'],
27
+)