-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (34 loc) · 862 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
32
33
34
35
36
#!/usr/bin/env python
# encoding: utf-8
"""
Created on Oct 15, 2014
@author: tmahrt
"""
import io
from setuptools import setup
setup(
name="pysle",
python_requires=">3.6.0",
version="4.0.2",
author="Tim Mahrt",
author_email="timmahrt@gmail.com",
url="https://github.com/timmahrt/pysle",
package_dir={"pysle": "pysle"},
packages=["pysle", "pysle.utilities"],
package_data={
"pysle": [
"data/ISLEdict.txt",
]
},
install_requires=[
"praatio ~= 6.0",
"typing_extensions",
],
license="LICENSE",
description=(
"An interface to ISLEX, an IPA pronunciation dictionary "
"for English with stress and syllable markings."
),
long_description=io.open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
)