mirror of
https://github.com/Mintplex-Labs/g2p-en.git
synced 2026-07-01 18:25:51 -04:00
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
#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 = '2.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',
|
|
'nltk>=3.2.4',
|
|
'inflect>=0.3.1',
|
|
'distance>=0.1.3',
|
|
],
|
|
license='Apache Software License',
|
|
include_package_data=True
|
|
)
|
|
|