Skip to content

Commit

Permalink
updated install requires
Browse files Browse the repository at this point in the history
  • Loading branch information
roedoejet committed Jul 18, 2019
1 parent 2e3cfc2 commit 3865fee
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
from setuptools import setup, find_packages
import g2p

with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')

setup(
name='g2p',
python_requires='>=3.6',
version=g2p.VERSION,
long_description='indexed grapheme to phoneme conversion',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
install_requires=['openpyxl'
'coloredlogs'
'Flask'
'flask_socketio'
'flask-talisman'
'pyyaml'
'regex'],
zip_safe=False
)

0 comments on commit 3865fee

Please sign in to comment.