generated from marcieltorres/python-boilerplate-project
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing poetry and ruff settings about newest versions of them (#51)
- Loading branch information
1 parent
ff56fa5
commit cd946bd
Showing
3 changed files
with
4 additions
and
4 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
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,4 +1,3 @@ | ||
version: "3.4" | ||
services: | ||
safe-chat-slack-bot: | ||
tty: true | ||
|
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 |
---|---|---|
|
@@ -4,16 +4,17 @@ version = "0.1.0" | |
description = "SafeChat Slack Bot is an open-source project designed to enhance data security within Slack workspaces" | ||
authors = ["Marciel Torres <[email protected]>"] | ||
license = "MIT" | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
slack-bolt = "1.22.0" | ||
aiohttp = "3.11.11" | ||
|
||
[tool.poetry.dev-dependencies] | ||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.0.0" | ||
pytest-cov = "^6.0.0" | ||
ruff = "^0.8.1" | ||
ruff = "^0.9.6" | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests",] | ||
|