-
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.
KIT-3396 added project files and edited requirements
- Loading branch information
1 parent
2b8c9c8
commit 3ab35db
Showing
3 changed files
with
30 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 |
---|---|---|
|
@@ -40,3 +40,4 @@ dist/ | |
venv | ||
sag_py_web_common.egg-info | ||
/lcov.info | ||
poetry.lock |
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,28 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
[tool.poetry] | ||
name = "sag-py-web-common" | ||
version = "0.1.2" | ||
description = "Small helper functions for web projects" | ||
authors = ["Samhammer AG"] | ||
license = "MIT" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "3.8" | ||
asgi-logger = ">=0.1.0" | ||
fastapi = ">=0.52.1" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
flake8 = "*" | ||
mypy = "*" | ||
build = "*" | ||
pytest = "*" | ||
pytest-asyncio = "*" | ||
pytest-cov = "*" | ||
coverage-lcov = "*" | ||
toml = "*" | ||
mock = "*" | ||
types-mock = "*" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" |
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 |
---|---|---|
|
@@ -7,5 +7,6 @@ pytest | |
pytest-asyncio | ||
pytest-cov | ||
coverage-lcov | ||
toml | ||
mock | ||
types-mock |