-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (36 loc) · 1.08 KB
/
setup.py
File metadata and controls
57 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
"""
vpl setup file
"""
import glob
from os import path
# always prefer setuptools over distutils
from setuptools import setup
# the location of the setup file
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='vpl',
version='0.0.4',
description='Video Pipe Line',
long_description=long_description,
url='https://github.com/chemicaldevelopment/vpl',
author='Cade Brown',
author_email='cade@chemicaldevelopment.us',
license='GPLv3',
classifiers=[
'Topic :: Multimedia :: Video :: Conversion',
],
keywords='video processing',
packages = ["vpl", "vpl.examples"],
test_suite="vpl.tests",
install_requires=['numpy', 'scipy', 'opencv-python'],
extras_require={
'test': ['coverage'],
'play': ['simpleaudio']
},
#data_files=[('chaudio/samples', glob.glob('chaudio/samples/*')), ('examples', glob.glob("examples/*"))],
data_files=[],
include_package_data=True,
)