forked from uhavin/slackers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "slackers"
version = "1.0.2"
readme = "README.md"
homepage = "https://github.com/uhavin/slackers"
repository = "https://github.com/uhavin/slackers"
description = "Slack webhooks API served by FastAPI"
authors = ["Niels van Huijstee <niels@huijs.net>"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications :: Chat",
"Topic :: Office/Business",
]
[tool.poetry.dependencies]
python = "^3.6"
pyee = "^6.0"
python-multipart = "^0.0.5"
requests = "^2.22"
fastapi = "^0"
[tool.poetry.extras]
uvicorn=["uvicorn"]
[tool.poetry.dev-dependencies]
pytest-cov = "^2.8"
pytest-mock = "^1.11"
black = "^20.8b1"
pytest = "^6.2.5"
tox = "^3.24.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"