Browse code

Add install

Robert Cranston authored on 18/01/2022 01:13:27
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,33 @@
1
+from setuptools import setup
2
+
3
+with open("README.md") as f:
4
+    long_description = f.read()
5
+
6
+setup(
7
+    name='zoommotion',
8
+    version='1.0.0',
9
+    description="Automatically zoom in on video content of interest",
10
+    long_description=long_description,
11
+    long_description_content_type='text/markdown',
12
+    url='https://git.rcrnstn.net/rcrnstn/zoommotion',
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, <4',
20
+    install_requires=[
21
+        'pyffstream @ git+https://git.rcrnstn.net/rcrnstn/pyffstream',
22
+        'numpy',
23
+        'Pillow',
24
+        'opencv-python',
25
+        'scipy',
26
+    ],
27
+    py_modules=['zoommotion'],
28
+    entry_points={
29
+        'console_scripts': [
30
+            'zoommotion = zoommotion:main',
31
+        ],
32
+    },
33
+)