forked from nuxion/labmachine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 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
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "labmachine"
version = "0.6.0"
description = "A simple creator of machines with Jupyterlab"
authors = ["nuxion <nuxion@gmail.com>"]
license = "Apache-2.0"
packages = [
{ include = "labmachine"},
]
readme = "README.md"
homepage = "https://github.com/nuxion/labmachine"
repository = "https://github.com/nuxion/labmachine"
keywords = ["jupyter", "cloud"]
include = ["LICENSE"]
[tool.poetry.scripts]
jupctl = "labmachine.cli:cli"
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
apache-libcloud = "^3.6.0"
pydantic = "^1.9.2"
nanoid = "^2.0.0"
cryptography = "^37.0.4"
rich = "^12.5.1"
click = "^8.1.3"
smart-open = { version = "^6.0.0", optional=true}
google-cloud-storage = { version = "^1.31.0", optional=true }
google-cloud-artifact-registry = { version="^1.3.1", optional=true}
tomli-w = "^1.0.0"
tomli = "^2.0.1"
google-cloud-logging = {version = "^3.2.5", optional = true}
[tool.poetry.extras]
google = [
"smart-open",
"google-cloud-storage",
"google-cloud-artifact-registry",
"google-cloud-logging"
]
[tool.poetry.dev-dependencies]
ipython = ">=7.3.4" # needed for python3.7 support
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"