forked from dippedrusk/arpabet-syllabifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1010 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
31
import os
import setuptools
pkg_root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(pkg_root, 'README.md'), 'r', encoding='utf-8') as f:
long_description = f.read()
with open(os.path.join(pkg_root, 'requirements.txt'), 'r', encoding='utf-8') as f:
requirements = [r.strip() for r in f.readlines()]
setuptools.setup(
name='syllabifier',
version='0.0.1',
description='syllabifier chunks your English ARPABET pronunciations into syllables',
long_description=long_description,
packages=setuptools.find_packages(where='src', exclude=('tests',)),
package_dir={'': 'src'},
python_requires='>= 3.5',
setup_requires=requirements,
install_requires=requirements,
tests_require='pytest',
include_package_data=True,
platforms='any',
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
],
)