-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
46 lines (45 loc) · 1.29 KB
/
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
39
40
41
42
43
44
45
46
from setuptools import setup
setup(
name='teletext',
version='3.1.99',
author='Alistair Buxton',
author_email='[email protected]',
url='http://github.com/ali1234/vhs-teletext',
packages=['teletext', 'teletext.vbi', 'teletext.cli', 'teletext.gui'],
package_data={
'teletext.vbi': [
'data/debruijn.dat',
'data/vhs/parity.dat',
'data/vhs/hamming.dat',
'data/vhs/full.dat',
'data/betamax/parity.dat',
'data/betamax/hamming.dat',
'data/betamax/full.dat'
],
'teletext.gui': [
'decoder.qml',
'editor.ui',
]
},
entry_points={
'console_scripts': [
'teletext = teletext.cli.teletext:teletext',
],
'gui_scripts': [
'ttviewer = teletext.gui.editor:main',
],
},
install_requires=[
'numpy<2', 'scipy', 'matplotlib', 'click', 'tqdm', 'pyzmq', 'watchdog', 'pyserial',
'windows-curses;platform_system=="Windows"',
],
extras_require={
'spellcheck': ['pyenchant'],
'CUDA': ['pycuda'],
'OpenCL': ['pyopencl'],
'viewer': ['PyOpenGL'],
'profiler': ['plop'],
'qt': ['PyQt5'],
'audio': ['spectrum', 'miniaudio'],
}
)