forked from LaboInfra/labctl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 939 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 939 Bytes
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
[tool.poetry]
name = "labctl"
version = "0.0.0"
description = "A simple cli tool to manage your access to LaboInfra ESGI Cloud"
authors = ["msterhuj <gabin.lanore@gmail.com>"]
readme = "README.md"
#homepage = ""
#documentation = ""
repository = "https://github.com/laboinfra/labctl"
keywords = ["labctl", "laboinfra", "ESGI", "cloud", "openstack", "vpn"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Topic :: Utilities",
] # https://pypi.org/classifiers/
[tool.poetry.scripts]
labctl = "labctl.main:app"
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.32.3"
pyyaml = "^6.0.2"
typer = {extras = ["all"], version = "^0.12.5"}
colorama = "^0.4.6"
wgconfig = "^1.0.4"
[tool.poetry.dev-dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"