-
-
Notifications
You must be signed in to change notification settings - Fork 240
/
pyproject.toml
66 lines (58 loc) · 1.51 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
[tool.poetry]
name = "puppetboard"
version = "6.0.0-rc1"
description = "Web frontend for PuppetDB"
authors = ["Vox Pupuli <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = 'https://github.com/voxpupuli/puppetboard'
keywords = ["puppet", "puppetdb", "puppetboard"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
]
packages = [
{ include = "puppetboard" },
]
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1.7"
flask = "^3.1.0"
commonmark = "^0.9.1"
flask-apscheduler = "^1.13.1"
flask-caching = "^2.3.0"
flask-wtf = "^1.2.2"
idna = "^3.10"
requests = "^2.32.3"
packaging = "^24.2"
pyparsing = "^3.2.0"
pypuppetdb = "^3.2.0"
typing-extensions = "^4.12.2"
zipp = "^3.21.0"
[tool.poetry.group.test.dependencies]
pep8 = "^1.7.1"
coverage = "^7.6.9"
mock = "^5.1.0"
pytest = "^8.3.4"
pylint = "^3.3.2"
pytest-cov = "^6.0.0"
pytest-pylint = "^0.21.0"
pytest-mock = "^3.14.0"
pytest-mypy = "^0.10.3"
pytest-randomly = "^3.16.0"
cov-core = "^1.15.0"
bandit = "^1.8.0"
beautifulsoup4 = "^4"
types-requests = "^2.32.0.20241016"
types-setuptools = "^75.6.0.20241126"
types-toml = "^0.10.8.20240310"
[tool.poetry.group.docker.dependencies]
gunicorn = "^23.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"