forked from bbc/ebu-tt-live-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 826 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
try:
from setuptools import setup
extra = dict(test_suite="tests.test.suite", include_package_data=True, test_requires=[])
except ImportError:
from distutils.core import setup
extra = {}
packages=[
"ebu_tt_live",
"ebu_tt_live.bindings",
"ebu_tt_live.clocks",
"ebu_tt_live.scripts"
]
setup(
name="ebu-tt-live",
version="0.0.1",
description="EBU-TT Part 3 library implementing Specification EBU-3370",
install_requires=[
"PyXB",
"ipdb" # This will eventually be removed from here
],
license="BSD3",
packages=packages,
entry_points={
'console_scripts': [
'ebu-dummy-encoder = ebu_tt_live.scripts.ebu_dummy_encoder:main',
'ebu-interactive-shell = ebu_tt_live.scripts.ebu_interactive_shell:main'
]
}
)