forked from felix-lau/ebu_adm_renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
setup(
name='ear',
description='EBU ADM Renderer',
version='2.0.0',
url='https://github.com/ebu/ebu_adm_renderer',
author='EBU',
author_email='[email protected]',
license='BSD-3-Clause-Clear',
long_description=open('README.md').read() + '\n' + open('CHANGELOG.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'numpy~=1.14',
'scipy~=1.0',
'attrs~=17.4',
'ruamel.yaml~=0.15',
'lxml~=4.4',
'enum34~=1.1',
'six~=1.11',
'multipledispatch~=0.5',
],
extras_require={
'test': [
'pytest~=3.5',
'pytest-datafiles~=2.0',
'pytest-cov~=2.5',
'soundfile~=0.10',
],
'dev': [
'flake8~=3.5',
'flake8-print~=3.1',
'flake8-string-format~=0.2',
],
},
packages=find_packages(),
package_data={
"ear.test": ["data/*.yaml", "data/*.wav"],
"ear.core": ["data/*.yaml", "data/*.dat"],
"ear.core.test": ["data/psp_pvs/*.npz"],
"ear.core.objectbased.test": ["data/gain_calc_pvs/*"],
"ear.fileio.adm": ["data/*.xml"],
"ear.fileio.adm.test": ["test_adm_files/*.xml"],
"ear.fileio.bw64.test": ["test_wav_files/*.wav"],
},
entry_points={
'console_scripts': [
'ear-render = ear.cmdline.render_file:main',
'ear-utils = ear.cmdline.utils:main'
]
},
)