forked from Legisign/Praat-textgrids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (40 loc) · 2.11 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
'''
praat-textgrids
Python module for manipulating Praat text-format TextGrid files.
Copyright © 2019–2020 Legisign.org, Tommi Nieminen <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-03-27 1.4.0.dev1 Tier + Tier -> Tier, as it should be.
2020-03-29 1.4.0.dev2 Tier.to_csv() fix, changes in dev1 still need
testing.
2020-03-29 1.4.0.dev3 For tier + tier to work, tier.xmin and tier.xmax
should be read after all. Parser changes as well
as fixes for Tier.__add__().
2020-04-05 1.4.0.dev4 Fixes in Interval.__init__() and
TextGrid.tier_from_csv().
2020-04-06 1.4.0.dev5 Trying to set Tier.xmin and Tier.xmax correctly.
2020-04-06 1.4.0.dev6 Trying to set Interval.xmin and Interval.xmax
correctly.
'''
import setuptools
with open('README.md', 'r',encoding='utf-8') as readme:
long_description = readme.read()
setuptools.setup(name='praat-textgrids',
version='1.4.0.dev6',
description='Manipulation of Praat TextGrids',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/Legisign/Praat-textgrids',
author='Legisign.org',
author_email='[email protected]',
license='GPLv3',
packages=setuptools.find_packages())