-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.06 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
[project]
name = "custom_resources"
version = "2.0.0"
description = 'Custom resources for Troposphere/CloudFormation.'
readme = "README.md"
authors = [
{ name = 'VRT DPC', email = 'dpc@vrt.be' },
]
license-files = ["LICENSE.txt"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.14',
]
keywords = ["cloudformation", "aws"]
dependencies = [
"troposphere",
"pytest",
"cfn-custom-resource @ git+https://github.com/vrtdev/cfn-custom-resource",
"boto3",
"twine",
"invoke",
"flake8",
"flake8-docstrings",
"flake8-tidy-imports",
"flake8-commas",
"flake8-string-format",
"flake8-pep3101",
"flake8-builtins",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"botostubs",
]
[tool.pytest.ini_options]
pythonpath = [
"src",
]
[tool.uv]
keyring-provider = "subprocess"
[tool.uv.sources]
custom_resources = { index = "nexus" }
[[tool.uv.index]]
name = "nexus"
url = "https://nexus.core.a51.be/repository/pypi"
explicit = true