-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e293a48
commit eab92ef
Showing
2 changed files
with
29 additions
and
0 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 |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
.tool-versions | ||
Dockerfile | ||
docker-compose.yml | ||
pyproject.toml |
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,28 @@ | ||
[project] | ||
name = "slack-events-bot" | ||
description = "An automated Slack bot to syndicate local events into Slack channels in a weekly digest format. Event data is sourced from HackGreenville Labs Events API." | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
license = "MIT" | ||
authors = [ | ||
{ name = "Olivia Sculley", email = "[email protected]" }, | ||
] | ||
keywords = [ | ||
"automation", | ||
"black", | ||
"bolt", | ||
"bot", | ||
"pylint", | ||
"slack" | ||
] | ||
dependencies = [ | ||
"aiohttp==3.8.5", | ||
"python_dateutil==2.8.2", | ||
"pytz==2023.3", | ||
"slack_bolt==1.18.0" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/hackgvl/slack-events-bot" | ||
Documentation = "https://github.com/hackgvl/slack-events-bot/blob/dev/README.md" | ||
Repository = "https://github.com/hackgvl/slack-events-bot.git" |