-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1006 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 1006 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
32
33
34
35
import sys
import subprocess
PY_VER = sys.version[0]
subprocess.call(["pip{:} install -r requirements.txt".format(PY_VER)], shell=True)
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name='transly',
version='0.1.3',
description="""Pronunciation and Transliteration module trained on CMU pronouncing dictionary, IIT Bombay and IIT Kharagpur text corpora""",
url='https://github.com/gitnik17/transly',
author='Nikhil Kothari',
author_email='gitnik17@gmail.com',
license='Apache License 2.0',
zip_safe=False,
packages=['transly'],
package_data={'transly': ['transly/*']},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3"
],
long_description = long_description,
install_requires=[
'pandas',
'keras==2.3.1',
'setuptools',
'tensorflow==2.1.0',
'h5py==2.10.0'
],
)