-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (44 loc) · 1.14 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
[tool.poetry]
name = "ritdu-slacker"
version = "1.5.2"
description = "Simple internal Slack API wrapper"
authors = [
"Ringier Tech <[email protected]>",
]
homepage = "https://github.com/RingierIMU/ritdu-slacker/"
repository = "https://github.com/RingierIMU/ritdu-slacker/"
license = "MIT"
readme = "README.md"
packages = [
{ include = "ritdu_slacker" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.3"
click-log = "^0.4.0"
requests = "^2.28.2"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
pyfakefs = "^5.1.0"
pylint = "^2.16.2"
pytest = "^7.2.1"
pytest-mock = "^3.10.0"
responses = "^0.22.0"
twine = "^4.0.2"
pyright = "^1.1.296"
mypy = "^1.0.1"
types-requests = "^2.28.11.15"
[tool.poetry.scripts]
ritdu-slacker = "ritdu_slacker.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"