Skip to content

Commit f3cf818

Browse files
committed
Fix pyproject.toml formatting
1 parent 7141ec5 commit f3cf818

1 file changed

Lines changed: 30 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,14 @@ dstack = "dstack._internal.cli.main:main"
5656
path = "src/dstack/version.py"
5757

5858
[tool.hatch.build.targets.sdist]
59-
artifacts = ["src/dstack/_internal/server/statics/**"]
59+
artifacts = [
60+
"src/dstack/_internal/server/statics/**",
61+
]
6062

6163
[tool.hatch.build.targets.wheel]
62-
artifacts = ["src/dstack/_internal/server/statics/**"]
64+
artifacts = [
65+
"src/dstack/_internal/server/statics/**",
66+
]
6367

6468
[tool.hatch.metadata.hooks.fancy-pypi-readme]
6569
content-type = "text/markdown"
@@ -79,13 +83,13 @@ dev = [
7983
"pre-commit>=4.2.0",
8084
"pytest-asyncio>=0.23.8",
8185
"pytest-httpbin>=2.1.0",
82-
"httpbin>=0.10.2", # indirect to make compatible with Werkzeug 3
86+
"httpbin>=0.10.2", # indirect to make compatible with Werkzeug 3
8387
"pytest~=7.2",
8488
"pytest-socket>=0.7.0",
8589
"requests-mock>=1.12.1",
8690
"openai>=1.68.2",
8791
"freezegun>=1.5.1",
88-
"ruff==0.11.6", # should match .pre-commit-config.yaml
92+
"ruff==0.11.6", # should match .pre-commit-config.yaml
8993
"testcontainers>=4.9.2",
9094
"pytest-xdist>=3.6.1",
9195
]
@@ -124,7 +128,11 @@ server = [
124128
"grpcio>=1.50",
125129
"backports.entry-points-selectable",
126130
]
127-
aws = ["boto3>=1.38.13", "botocore", "dstack[server]"]
131+
aws = [
132+
"boto3>=1.38.13",
133+
"botocore",
134+
"dstack[server]",
135+
]
128136
azure = [
129137
"azure-identity>=1.12.0",
130138
"azure-mgmt-subscription>=3.1.1",
@@ -145,9 +153,19 @@ gcp = [
145153
"google-cloud-tpu>=1.18.3",
146154
"dstack[server]",
147155
]
148-
datacrunch = ["datacrunch", "dstack[server]"]
149-
kubernetes = ["kubernetes", "dstack[server]"]
150-
lambda = ["boto3>=1.38.13", "botocore", "dstack[server]"]
156+
datacrunch = [
157+
"datacrunch",
158+
"dstack[server]",
159+
]
160+
kubernetes = [
161+
"kubernetes",
162+
"dstack[server]",
163+
]
164+
lambda = [
165+
"boto3>=1.38.13",
166+
"botocore",
167+
"dstack[server]",
168+
]
151169
oci = [
152170
"oci>=2.150.0",
153171
"cryptography>=44.0.3",
@@ -156,7 +174,10 @@ oci = [
156174
"pyopenssl>=23.2.0",
157175
"dstack[server]",
158176
]
159-
nebius = ["nebius>=0.2.19,<0.3; python_version >= '3.10'", "dstack[server]"]
177+
nebius = [
178+
"nebius>=0.2.19,<0.3; python_version >= '3.10'",
179+
"dstack[server]",
180+
]
160181
all = [
161182
"dstack[gateway,server,aws,azure,gcp,datacrunch,kubernetes,lambda,nebius,oci]",
162183
]

0 commit comments

Comments
 (0)