-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
60 lines (47 loc) · 1.34 KB
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
[project]
name = "lab-auto-pulumi"
version = "0.2.0"
description = "Pulumi helpers. Especially useful for tooling created by the LabAutomationAndScreening github organization."
authors = [
{name = "Eli Fine"},
]
readme = "README.md"
requires-python = ">=3.12.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pulumi>=3.213.0",
"pulumi-aws>=7.15.0",
"pulumi-aws-native>=1.45.0",
"ephemeral-pulumi-deploy>=0.0.6",
"boto3>=1.42.14",
"boto3-stubs[ssm]>=1.42.14",
"pydantic>=2.12.5",
]
[dependency-groups]
dev = [
# Specific to this repository
"boto3-stubs[all]", # version specification is in main dependencies already
"faker>=40.11.0",
# Managed by upstream template
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"pytest-randomly>=4.0.1",
]
[tool.setuptools]
license-files = [] # kludge until this bug is fixed https://github.com/pypa/setuptools/issues/4759
[tool.uv]
package = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://upload.pypi.org/legacy/"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"