-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 794 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
with open("README.md", 'r') as f:
long_description = f.read()
setuptools.setup(name='vidio',
version='0.0.4',
author='Jim Bohnslav',
author_email='jbohnslav@gmail.com',
description='Video file IO',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
python_requires='>=3.6',
install_requires=['h5py', 'numpy', 'opencv-python-headless'])