-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (51 loc) · 1.42 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
[tool.poetry]
name = "prod-manager"
version = "0.2.0"
description = "Interact with a ProdManager instance"
homepage = "https://gitlab.com/prod-manager/prod-manager-api"
repository = "https://gitlab.com/prod-manager/prod-manager-api"
documentation = "https://prod-manager-api.tiwabbit.fr"
keywords = ["prod-manager", "manager", "production", "monitor", "incident", "maintenance"]
license = "GPL-3.0"
authors = [
"Lunik <[email protected]>"
]
maintainers = [
"Lunik <[email protected]>"
]
readme = "README.md"
packages = [
{ include = "prodmanager" },
]
include = [
"CHANGELOG.md"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
]
[tool.poetry.urls]
"Bug Tracker" = "https://gitlab.com/prod-manager/prod-manager-api/-/issues"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.13.0"
[tool.poetry.group.test.dependencies]
pytest = "*"
responses = "*"
pylint = "*"
pytest-cov = "*"
pytest-html = "*"
pytest-xdist = "*"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
mkdocs-git-revision-date-localized-plugin = "*"
mkdocs-gitlab-plugin = "*"