-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
executable file
·38 lines (33 loc) · 983 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
from setuptools import setup
setup(
name='ld-decode',
version='7',
description='Software defined LaserDisc decoder',
url='https://github.com/happycube/ld-decode',
keywords=['video', 'LaserDisc'],
classifiers=[
'Environment :: Console',
'Environment :: X11 Applications :: Qt',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: C++',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video :: Capture',
],
packages=['lddecode'],
scripts=[
'cx-expander',
'ld-cut',
'ld-decode',
'scripts/ld-compress',
],
# These are just the minimal runtime dependencies for the Python scripts --
# see the documentation for the full list of dependencies.
provides=['lddecode'],
requires=[
'matplotlib',
'numba',
'numpy',
'scipy',
],
)