forked from Kyubyong/g2p
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.08 KB
/
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
32
33
34
#from distutils.core import setup
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'g2p_en',
packages = ['g2p_en'], # this must be the same as the name above
version = '1.0.0',
description = 'A Simple Python Module for English Grapheme To Phoneme Conversion',
long_description=long_description,
author = 'Kyubyong Park & Jongseok Kim',
author_email = 'kbpark.linguist@gmail.com',
url = 'https://github.com/Kyubyong/g2p', # use the URL to the github repo
download_url = 'https://github.com/Kyubyong/g2p/archive/1.0.0.tar.gz', # I'll explain this in a second
keywords = ['g2p','g2p_en'], # arbitrary keywords
classifiers = [],
install_requires = [
'numpy>=1.13.1',
'tensorflow >= 1.3.0',
'nltk>=3.2.4',
'inflect>=0.3.1',
'distance>=0.1.3',
'future>=0.16.0'
],
license='Apache Software License',
include_package_data=True
)