-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
31 lines (29 loc) · 952 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
from setuptools import setup
exec(open('subsync/version.py').read())
setup(name='subsync',
version=__version__,
description='Synchronize your subtitles with machine learning',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Speech',
],
keywords='subtitle synchronize machine learning',
platforms=["Independent"],
scripts=['subsync/bin/subsync'],
include_package_data=True,
url='https://github.com/tympanix/subsync',
author='tympanix',
author_email='[email protected]',
license='MIT',
packages=['subsync'],
install_requires=[
'tensorflow>=1.0.0',
'numpy',
'matplotlib',
'librosa',
'h5py>=2.9.0',
'pysrt',
],
zip_safe=False)