-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 882 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
37
38
39
40
41
42
43
[project]
name = "cirrus-deploy"
version = "0.2.0"
description = "Scripts for building and deploying OpenGoSim Cirrus on Equinor premises"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [{ name = "Zohar Malamant", email = "ZOM@equinor.com" }]
requires-python = ">=3.11"
dependencies = [
"click>=8.1.7",
"networkx>=3.3",
"pydantic>=2.9.2",
"pyyaml>=6.0.2",
"pytest-snapshot>=0.9.0",
"semver>=3.0.2",
"six>=1.16.0",
]
[dependency-groups]
dev = [
"mypy>=1.11.2",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
"ruff>=0.6.8",
"types-networkx>=3.3.0.20241009",
"types-pyyaml>=6.0.12.20240917",
]
[project.scripts]
deploy = "deploy.cli:cli"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/deploy"]
[tool.uv]
package = true