diff --git a/.gitignore b/.gitignore index 407f7f6..3943a37 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ venv build __pycache__ .DS_Store -archive/ \ No newline at end of file +archive/ +dist/ \ No newline at end of file diff --git a/Makefile b/Makefile index c1b06ff..8b50f2e 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,11 @@ install-cli: check-ffmpeg test: install $(VENV) python -m unittest discover -s tests -publish: install - $(VENV) python -m pip install --upgrade build twine +build: install + $(VENV) python -m build + +publish: build + $(VENV) python -m twine upload dist/* transcribe: install $(VENV) python transcribe_me/main.py diff --git a/pyproject.toml b/pyproject.toml index a9fe8ea..ba25fcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,6 @@ +[tool.setuptools] +packages = ["transcribe_me"] + [project] name = "transcribe-me" version = "0.1.0"