-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (23 loc) · 856 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
from distutils.core import setup
setup(
name = 'video_flawer',
packages = ['video_flawer'],
version = '0.0.4',
license='MIT',
description = 'This package enhances video files with artifical defects.',
author = 'Matous Cejnek, Yang Hong-Bin',
author_email = 'matousc@gmail.com',
url = 'https://github.com/matousc89/video_flawer',
download_url = 'https://github.com/matousc89/video_flawer/archive/v0.0.4.tar.gz',
keywords = ['video', 'noise', 'artificial'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)