-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (57 loc) · 1.32 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
[project]
name = "damavand"
description = "Damavand is an opinionated cloud-agnostic pythonic implementation of ARC design pattern for developing cloud-native applications."
authors = [
{name = "Kiarash Kiani", email = "kiarash@datachef.co"},
]
dependencies = [
"boto3>=1.34.147",
]
requires-python = ">=3.11.0"
readme = "README.md"
license = {text = "MPL-2.0"}
dynamic = ["version"]
[project.optional-dependencies]
build = [
"pulumi-command>=1.0.1",
"pulumi>=3.127.0",
"pulumi-aws>=6.47.0",
"pulumi-azure-native>=2.51.0",
"pulumi-random>=4.16.3",
"pulumi-awsx>=2.16.1",
]
llm = [
"sagemaker>=2.232.0",
]
sparkle = [
"sparkle @ git+https://github.com/DataChefHQ/sparkle.git@v0.6.1",
"pyspark==3.3.2",
]
[tool.pdm]
distribution = false
path = "src/damavand/__init__.py"
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
dev = [
"Commitizen>=3.28.0",
"pdbpp>=0.10.3",
"mypy>=1.11.0",
"boto3-stubs>=1.34.149",
"pytest>=8.3.2",
"pytest-coverage>=0.0",
"pyright>=1.1.374",
"moto>=5.0.11",
"pip>=24.2",
]
[tool.commitizen]
version = "1.0.0"
update_changelog_on_bump = true
version_provider = "scm"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"src/damavand/__init__.py"
]
[tool.mypy]
no_site_packages = true
ignore_missing_imports = true