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