generated from mlibrary/python-starter
-
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.
Merge pull request #7 from mlibrary/take-out-venv-in-production
changing to using pip installed dependencies in production
- Loading branch information
Showing
8 changed files
with
1,143 additions
and
27 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[tool.poetry] | ||
name = "poetry-instance" | ||
version = "1.8.3" | ||
description = "" | ||
authors = [] | ||
license = "" | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "3.11.8" | ||
poetry = "1.8.3" | ||
|
||
[tool.poetry.group.additional.dependencies] | ||
poetry-plugin-export = "^1.8.0" | ||
|
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ __pycache__ | |
.ssh | ||
htmlcov/ | ||
.coverage | ||
.gnupg | ||
.gnupg | ||
requirements.txt |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 +1,7 @@ | ||
[tool.poetry] | ||
name = "aim" | ||
version = "0.1.0" | ||
description = "Boilerplate code for developing a python app in docker" | ||
description = "A CLI for the AIM team" | ||
authors = ["Monique Rio <[email protected]>", "David Fulmer <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "aim"}] | ||
|
@@ -21,6 +21,7 @@ pytest = "^8.0.2" | |
pytest-cov = "^5.0.0" | ||
ruff = "^0.6.6" | ||
|
||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov=aim --cov-report=html --cov-report=term:skip-covered" | ||
|
||
|
This file was deleted.
Oops, something went wrong.