forked from readbeyond/aeneas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request readbeyond#17 from pettarin/devel
Added id regex for subtitles, plain. Close readbeyond#14
- Loading branch information
Showing
11 changed files
with
137 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
*.pyo | ||
*.swp | ||
*.so | ||
MANIFEST | ||
aeneas.egg-info | ||
aeneas/build | ||
bak | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
recursive-include aeneas/tools/res * | ||
include check_dependencies.py | ||
recursive-include docs * | ||
prune docs/build | ||
include LICENSE | ||
recursive-include licenses * | ||
include README.md | ||
include README.txt | ||
include requirements.txt | ||
include VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,14 +31,15 @@ | |
|
||
setup( | ||
name="aeneas", | ||
packages=["aeneas", "aeneas.tests", "aeneas.tools"], | ||
packages=["aeneas", "aeneas.tools"], | ||
version="1.3.0", | ||
description="aeneas is a Python library and a set of tools to automagically synchronize audio and text", | ||
author="Alberto Pettarin", | ||
author_email="[email protected]", | ||
url="https://github.com/readbeyond/aeneas", | ||
license="GNU Affero General Public License v3 (AGPL v3)", | ||
long_description=open("README.txt").read(), | ||
long_description=open("README.txt", "r").read(), | ||
install_requires=["BeautifulSoup", "lxml", "numpy", "pafy"], | ||
keywords=[ | ||
"CSV", | ||
"DTW", | ||
|