Skip to content

Commit

Permalink
add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviasculley committed Sep 27, 2023
1 parent e293a48 commit eab92ef
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.tool-versions
Dockerfile
docker-compose.yml
pyproject.toml
28 changes: 28 additions & 0 deletions pyproject.toml
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"

0 comments on commit eab92ef

Please sign in to comment.