Adding command to make package and upload to twine

This commit is contained in:
Shivam Mehta
2023-09-16 21:27:37 +00:00
parent acb57a3857
commit ed1c9d87b5
2 changed files with 6 additions and 1 deletions

View File

@@ -13,6 +13,11 @@ clean: ## Clean autogenerated files
clean-logs: ## Clean logs
rm -rf logs/**
create-package: ## Create wheel and tar gz
python setup.py bdist_wheel --plat-name=manylinux1_x86_64
python setup.py sdist
python -m twine upload dist/* --verbose
format: ## Run pre-commit hooks
pre-commit run -a

View File

@@ -18,7 +18,7 @@ with open("README.md", "r", encoding="utf-8") as readme_file:
setup(
name="matcha-tts",
version="0.0.1",
version="0.0.0.1.dev0",
description="🍵 Matcha-TTS: A fast TTS architecture with conditional flow matching",
long_description=README,
long_description_content_type="text/markdown",