feat: rename project to OcotilloAPI and update description; bump Fast…#296
feat: rename project to OcotilloAPI and update description; bump Fast…#296jirhiker wants to merge 1 commit into
Conversation
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| [project.scripts] | ||
| oco = "cli.cli:cli" |
There was a problem hiding this comment.
Console script points to missing module
The new console entry oco is wired to cli.cli:cli, but there is no cli module/package anywhere in the repo (the only def cli is in manage.py). After installing the project, invoking the generated oco script will immediately fail with ModuleNotFoundError because setuptools cannot import cli.cli. This breakage is introduced by this commit and will affect every environment that installs and tries to use the CLI.
Useful? React with 👍 / 👎.
…API version
Why
This PR addresses the following problem / context:
How
Implementation summary - the following was changed / added / removed:
Notes
Any special considerations, workarounds, or follow-up work to note?