-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update project configurations and build scripts
- Ignore the `dist/` directory in the gitignore file - Added `transcribe_me` to the `packages` list in the `setuptools` section of `pyproject.toml` - Updated the version to `0.1.0` in the `project` section of `pyproject.toml` - Update the `publish` target in `Makefile` to depend on `build` - Introduce a new `build` target in `Makefile` to create a distribution
- Loading branch information
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ venv | |
build | ||
__pycache__ | ||
.DS_Store | ||
archive/ | ||
archive/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[tool.setuptools] | ||
packages = ["transcribe_me"] | ||
|
||
[project] | ||
name = "transcribe-me" | ||
version = "0.1.0" | ||
|