-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
23 lines (22 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
setuptools.setup(
name='flow_vis',
packages=['flow_vis'],
version='0.1',
license='MIT',
author='Tom Runia',
author_email='[email protected]',
description='Easy optical flow visualisation in Python.',
long_description='Python port of the optical flow visualization: https://people.csail.mit.edu/celiu/OpticalFlow/',
url='https://github.com/tomrunia/OpticalFlow_Visualization',
download_url='https://github.com/tomrunia/OpticalFlow_Visualization/archive/0.1.tar.gz',
keywords=['optical flow', 'visualization', 'motion'],
install_requires=['numpy'],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
python_requires='>=3.6',
)