-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.22 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 = "nuvla-job-engine"
version = "4.10.0"
description = "Nuvla Job Engine."
license = "Apache-2.0"
authors = ["SixSq SA <support@sixsq.com>"]
maintainers = ["Ignacio Penas <nacho@sixsq.com>"]
readme = "README.md"
repository = "https://github.com/nuvla/job-engine"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development"]
packages = [{ include = "nuvla" }]
[tool.poetry.dependencies]
python = "^3.11"
nuvla-api = "^4.2.1"
docker = "^7.1.0"
pyyaml = "^6.0.1"
statsd = "^4.0.1"
packaging = "^23.2"
importlib-metadata = "^7.0.1"
[tool.poetry.group.server.dependencies]
elasticsearch = "^7"
boto3 = "^1.34.40"
kazoo = "^2.6.0"
[tool.poetry.group.test.dependencies]
mock = "^5.1.0"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
coverage = "^7.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"