-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
79 lines (64 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "nua-monorepo"
version = "0.5.46"
description = "An open source, self-hosted cloud platform project"
authors = [
"Stefane Fermigier <sf@abilian.com>",
"Jerome Dumonteil <jd@abilian.com>",
]
license = "AGPL"
packages = [
# Empty package, needed to be able to build the monorepo
{ include = "nua_monorepo", from = "src" },
# Tests must be installed
{ include = "e2e", from = "tests" },
]
[project.urls]
homepage = "https://nua.rocks/"
repository = "https://github.com/abilian/nua"
documentation = "https://nua.rocks/"
"Issue Tracker" = "https://github.com/abilian/nua/issues"
Changelog = "https://github.com/abilian/nua/releases/"
Twitter = "https://twitter.com/NuaCloud"
#Reddit = "https://www.reddit.com/r/TODO"
#Discord = "https://discord.gg/TODO"
#Blog = "https://blog.nua.rocks/"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
nua-lib = { path = "nua-lib", develop = true }
nua-cli = { path = "nua-cli", develop = true }
nua-agent = { path = "nua-agent", develop = true }
nua-build = { path = "nua-build", develop = true }
nua-orchestrator = { path = "nua-orchestrator", develop = true }
# nua-server = { path = "nua-server", develop = true }
# Pinned for some reason
urllib3 = "<2.0"
[tool.poetry.group.dev.dependencies]
# Testing / checking / QA tools
urllib3 = "<2.0"
nox = "*"
abilian-devtools = "*"
pydeps = "^1.11.1"
autotyping = "^22.9.0"
# Helper for monorepo
invoke = "^2.0.0"
tomlkit = "^0.11.7"
# Helper for remote development
watchfiles = "^0.19.0"
# Debug
snoop = "*"
# Typing
types-setuptools = "*"
types-paramiko = "*"
types-requests = "*"
types-pyyaml = "*"
import-linter = "^1.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# ------------------------------------------------------------------------------
[tool.bandit]
skips = [
"B404", # blacklist
"B603", # subprocess_without_shell_equals_true
]