diff --git a/Makefile b/Makefile index 1e8ed23..ef34e98 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/setup.py b/setup.py index ef04f11..3b2d30e 100644 --- a/setup.py +++ b/setup.py @@ -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",