-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.2 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
[tool.poetry]
name = "nuvla-api"
version = "4.2.3"
description = "Nuvla APIServer python client library"
license = "Apache-2.0"
authors = ["SixSq SA <[email protected]>"]
maintainers = ["Ignacio Penas <[email protected]>"]
readme = "README.md"
repository = "https://github.com/nuvla/python-library"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development"]
packages = [{include = "nuvla"}]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
pyyaml = "^6.0.1"
[tool.poetry.group.tests.dependencies]
pytest = "^8.0.2"
coverage = "^7.4.3"
pytest-cov = "^4.1.0"
tox = "^4.13.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"