forked from DonDebonair/slack-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (69 loc) · 2.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "slack-machine"
version = "0.25.0"
description = "A sexy, simple, yet powerful and extendable Slack bot"
authors = ["Daan Debie <[email protected]>"]
license = "MIT"
repository = "https://github.com/DandyDev/slack-machine"
homepage = "https://github.com/DandyDev/slack-machine"
documentation = "https://dandydev.github.io/slack-machine/"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Office/Business"
]
packages = [
{ include = "machine" }
]
include = ["extra/logo.png", "run_dev.py", "README.md", "LICENSE"]
[tool.poetry.dependencies]
python = "^3.6.1"
dill = "^0.3.4"
APScheduler = "^3.8.1"
blinker-alt = "^1.5"
clint = "^0.5.1"
dacite = "^1.6.0"
requests = "^2.26.0"
dataclasses = { version = "^0.8", python = ">=3.6,<3.7" }
redis = {version = ">=3.5.3,<5.0.0", optional = true}
hiredis = {version = "^2.0.0", optional = true}
slack-sdk = "^3.12.0"
[tool.poetry.dev-dependencies]
pyroma = "^3.2"
pytest = "^7.0.1"
pytest-mock = "^3.6.1"
tox = "^3.24.5"
tox-gh-actions = "^2.9.1"
flake8 = "<4.0.0"
coverage = "^6.2"
redis = ">=3.5.3,<5.0.0"
pre-commit = "^2.17.0"
pytest-cov = "^3.0.0"
Markdown = "^3.3.6"
mkdocs-material = "8.2.7"
mkdocstrings = "^0.16.2"
[tool.poetry.extras]
redis = ["redis", "hiredis"]
[tool.poetry.scripts]
slack-machine = 'machine.bin.run:main'
[tool.pytest.ini_options]
addopts = "--verbose --cov-report term-missing --cov-report xml --junit-xml pytest.xml --cov=machine tests"
filterwarnings = [
"ignore:invalid escape sequence::bottle",
"ignore:Using or importing the ABCs::bottle"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"