-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 1.23 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
exec(open("plctestbench/__version__.py").read())
setuptools.setup(name='plc-testbench',
version=__version__,
author='Luca Vignati',
author_email='luca.vignati@vignati.net',
description="Framework comparison and benchmarking \
of error concealment algorithms",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://bitbucket.org/mindswteam/ecc-testbench",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=[
'numpy',
'soundfile',
'anytree',
'pymongo',
'tqdm',
'matplotlib',
'tensorflow',
'cpp-plc-template',
'burg-plc',
'typing_inspect',
],
python_requires='>=3.7',
)