-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
35 lines (33 loc) · 869 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
#!/usr/bin/env python
# encoding: utf-8
"""
Created on Aug 29, 2014
@author: tmahrt
"""
from setuptools import setup
import io
setup(
name="praatio",
python_requires=">3.6.0",
version="6.2.0",
author="Tim Mahrt",
author_email="timmahrt@gmail.com",
url="https://github.com/timmahrt/praatIO",
package_dir={"praatio": "praatio"},
packages=["praatio", "praatio.utilities", "praatio.data_classes"],
package_data={
"praatio": [
"praatScripts/*.praat",
]
},
install_requires=[
"typing_extensions",
],
license="LICENSE",
description=(
"A library for working with praat, textgrids, "
"time aligned audio transcripts, and audio files."
),
long_description=io.open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
)