Skip to content

Commit

Permalink
fix manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
erogol committed Jan 25, 2021
1 parent 57b668f commit 82e0295
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 24 deletions.
20 changes: 0 additions & 20 deletions Dockerfile

This file was deleted.

8 changes: 7 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
include README.md
include LICENSE.txt
include requirements.txt
include TTS/.models.json
recursive-include TTS *.json
recursive-include TTS *.html
recursive-include TTS *.png
recursive-include TTS *.md
recursive-include notebooks *.ipynb
recursive-include images *.png

2 changes: 1 addition & 1 deletion TTS/bin/synthesize.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def main():
args = parser.parse_args()

# load model manager
path = Path(__file__).parent / "../../.models.json"
path = Path(__file__).parent / "../.models.json"
manager = ModelManager(path)

model_path = None
Expand Down
2 changes: 1 addition & 1 deletion TTS/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def convert_boolean(x):

args = create_argparser().parse_args()

path = Path(__file__).parent / "../../.models.json"
path = Path(__file__).parent / "../.models.json"
manager = ModelManager(path)

if args.list_models:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def cythonize(*args, **kwargs): #pylint: disable=redefined-outer-name
# Remove our arguments from argv so that setuptools doesn't see them
sys.argv = [sys.argv[0]] + unknown_args

version = '0.0.9a4'
version = '0.0.9a9'
cwd = os.path.dirname(os.path.abspath(__file__))

# Handle Cython code
Expand Down Expand Up @@ -105,6 +105,7 @@ def pip_install(package_name):
long_description=README,
long_description_content_type="text/markdown",
license='MPL-2.0',
include_package_data = True,
ext_modules=find_cython_extensions(),
packages=find_packages(include=['TTS*']),
project_urls={
Expand Down

0 comments on commit 82e0295

Please sign in to comment.