forked from KarelVesely84/kaldi-io-for-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (26 loc) · 993 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (26 loc) · 993 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019 Oplatai.com (author: Ondrej Platek)
# Copyright 2019 Brno University of Technology (author: Karel Vesely)
# Licensed under the Apache License, Version 2.0 (the "License")
import setuptools
with open("README.md","r") as fh:
long_description = fh.read()
setuptools.setup(
name='kaldi_io',
version='0.9.0',
author='Karel Vesely',
description='Glue code connecting Kaldi data and Python.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/vesis84/kaldi-io-for-python',
install_requires=[ 'numpy>=1.15.3', ],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Sound/Audio :: Speech",
],
)