-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.03 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
[tool.poetry]
name = "cloudcraftco"
version = "1.1.0"
description = "Python SDK for rendering AWS and Azure diagrams using the Cloudcraft API."
homepage = "https://www.cloudcraft.co/"
repository = "https://github.com/DataDog/cloudcraft-python"
readme = "README.md"
license = "Apache-2.0"
authors = [
"Datadog, Inc. <[email protected]>",
]
maintainers = [
"Sean Broderick <[email protected]>",
]
keywords = [
"datadog",
"cloudcraft",
"aws",
"azure",
"diagrams",
"sdk",
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.3.2"
[tool.poetry.dev-dependencies]
pytest = "^8.3.0"
black = "^24.0.0"
isort = "^5.13.0"
pytest-mock = "^3.14.0"
pre-commit = "^4.0.0"
coverage = "^7.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"