-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
30 lines (26 loc) · 1006 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
"""Setup for the rnnt package."""
import setuptools
#with open('README.md') as f:
# README = f.read()
README = "To use this package please check the instructions in README at - https://github.com/mejanvijay/rnnt"
setuptools.setup(
author="Janvijay Singh",
author_email="[email protected]",
name='rnnt',
license="MIT",
description='rnnt is a python package for RNN-Transducer loss in TensorFlow==2.0.',
version='v0.0.5',
long_description=README,
url='https://github.com/mejanvijay/rnnt',
packages=setuptools.find_packages(),
python_requires=">=3.5",
install_requires=['tensorflow==2.0.3', 'numpy==1.18.2'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)