-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 997 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[project]
name = "sam-slash-slack"
dynamic = ["version"]
authors = [{ name = "Henry Jones", email = "[email protected]" }]
description = "A SAM python framework for slack slash bots."
readme = "README.md"
requires-python = ">=3.6"
license = { text = "GPL-3.0-or-later" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = ["aiohttp", "pydantic", "boto3"]
keywords = ["slack", "lambda", "bot", "slash command", "aws", "sam"]
[tool.setuptools.dynamic]
version = { attr = "sam_slash_slack.__version__" }
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
init-aws-slash-slack = "sam_slash_slack.cli:cli"