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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
%global _empty_manifest_terminate_build 0
Name: python-ce-bnch-sdk
Version: 2.2.0b0
Release: 1
Summary: SDK for interacting with the Benchling Platform.
License: Apache-2.0
URL: https://pypi.org/project/ce-bnch-sdk/
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ce/ea/fca380c3766d5da2fe16bd68cb3900c37ef562b55fed7d77b1542f04604b/ce-bnch-sdk-2.2.0b0.tar.gz
BuildArch: noarch
Requires: python3-backoff
Requires: python3-typing-extensions
Requires: python3-PyYAML
Requires: python3-typer
Requires: python3-httpx
Requires: python3-attrs
Requires: python3-dateutil
Requires: python3-black
Requires: python3-Jinja2
Requires: python3-autoflake
Requires: python3-benchling-api-client
%description
# CE Benchling SDK
This is the Customer Engineering team's branch of the Benchling SDK, containing features that we are not yet ready to release to customers.
Currently, the only difference from the main Benchling SDK is the Benchling Apps CLI.
## Benching Apps CLI
The SDK comes with a CLI for managing Benchling Apps, which is still under alpha testing.
Each integration corresponds to a Benchling App. You declare the app's dependencies in a manifest file, typically a top-level file named `manifest.yaml`. For example:
```yaml
manifestVersion: 1 # Currently only version 1 exists
info:
name: My App
version: 0.0.1
description: Cure cancer # Optional
configuration:
- name: My Plasmid # Should match the actual name in Benchling, if possible, as apps tries to find the dependency by name
type: entity_schema # Corresponds to the API namespace, in this case /entity-schemas
subtype: dna_sequence # This section is only used by resources with type "entity-schema"
# Possible values for entities are: "custom_entity", "dna_sequence", or "aa_sequence"
description: Plasmid schema of interest # Optional
fieldDefinitions:
- name: My Backbone
- name: My Resistances
- name: Optical Density Assay
type: assay_run_schema
fieldDefinitions:
- name: optical_density # Run, result, and request schemas use the snake-cased "warehouse name"
- name: Resistance
type: dropdown
options:
- name: 1 - Ampicillin
- name: 2 - Penicillin
- name: My Project
type: project
```
Any resource type which is served by the Benchling API can be referenced, using its kebab-cased name. Below is the full list of possible values for `resourceType`. Schema types:
- entity_schema
- container_schema
- plate_schema
- box_schema
- location_schema
- assay_result_schema
- assay_run_schema
- request_schema
- entry_schema
- workflow_task_schema
- dropdown
- workflow_task_status
Individual resource types:
- aa_sequence
- assay_result
- assay_run
- automation_input_generator
- automation_output_processor
- blob
- box
- container
- custom_entity
- dna_alignment
- dna_oligo
- dna_sequence
- entry
- folder
- label_printer
- label_template
- location
- plate
- project
- registry
- request
Once you've declared the dependencies, you can generate the `dependencies.py` file and the model classes (in this case `my_plasmid.py`, `optical_density_assay.py`, and `resistance.py`) using the command:
```bash
# Optional arguments `--manifest-file-path`, `dependencies_file_path`, `model_directory_path` to specify the exact paths
poetry run benchling-sdk app dependencies scaffold
```
Next, once a Benchling tenant has been set up where you want to run the integration, you can link each dependency to its corresponding Benchling API ID by using the configuration UI for Benchling Apps in the tenant.
Now the integration will have full access to all its required dependencies. See the documentation in the generated files for more detailed instructions on usage in the integration code.
## General Usage
For more detailed usage of the SDK, refer to the [public release notes](https://pypi.org/project/benchling-sdk/), which are stored as part of the project
in `publish/README.public.md`.
Simple usage example iterating through DNA sequences:
```python
from benchling_sdk.auth.api_key_auth import ApiKeyAuth
from benchling_sdk.benchling import Benchling
benchling = Benchling(url="https://my.benchling.com", auth_method=ApiKeyAuth("api_key"))
dna_sequence_pages = benchling.dna_sequences.list()
for page in dna_sequence_pages:
for dna_sequence in page:
print(dna_sequence.bases)
```
## Developer Notes
The `benching_sdk.benchling.Benchling` object serves as the point of entry for the SDK. API calls are organized into
services that generally correspond to [Capillary documentation](https://docs.benchling.com/reference).
Each method calling the API is wrapped with an `@api_method` decorator. This decorator applies several global
behaviors which may not be readily obvious including:
* Conditionally adding some logging on each method call
* Applying retries via the backoff library when `RetryStrategy` is configured
Logging in the SDK follows the [Python best practice](https://docs.python-guide.org/writing/logging/#logging-in-a-library)
of only adding the `logging.NullHandler()`. An example of enabling basic logging:
```python
import logging
logging.basicConfig(level=logging.INFO)
```
For more details on configuring or disabling `RetryStrategy`, refer to *Advanced Use Cases* in `publish/README.public.md`.
HTTP errors like `404` not found are all caught via `raise_for_status()` and transformed into
a standardized `BenchlingError` which wraps the underlying error for a better general error handling experience.
A caught BenchlingError can be inspected to learn the status triggering it, and the full contents of the error
response returned from the Benchling server.
### Exporting Models
Although generated models are packaged in `benchling_api_client.models`
and its files, we externalize the models via `benchling_sdk.models` in
order to abstract `benchling_api_client` from users such that they may
simply import `benchling_sdk.models.ExampleModelClass`.
This is accomplished in `benchling_sdk/models/__init__.py`. This file
is automatically generated from a Jinja template in `templates/` by
running `poetry run task models`. Changes should be committed to source
control. All tasks should be run from the root directory of the project.
Missing models from `benchling_api_client` are verified by unit
test in `benchling-sdk/tests/unit/test_models.py`.
## Configuring pre-push Git Hooks
```bash
poetry run pre-commit install --hook-type pre-push
```
## Publishing Releases
To create a release of the SDK, create a tag in Git from the `main` branch. CI will then
initiate a build, generate the client, and publish the resulting packages.
The published version will reflect the tag, so a tag of `1.0.4` will publish version `1.0.4`. Tags that do not meet
Poetry's [version format](https://semver.org/) will create a failed build when publishing is attempted.
This README will not be published alongside the public package. To modify the public README, modify
`publish/README.public.md`. The changes will be copied over when preparing for publishing.
*NOTE*: There are some scripts executed that make changes to the working directory and its files with the intention
of them being discarded (e.g., during CI). If running the scripts locally, exercise caution and save your changes
first.
## Code Generation Unit Tests
This project uses a feature of the `openapi-python-client` dependency to override one of the templates used for code
generation in that project. Since this project alters how code generation works, it includes unit testing around that
generation in the form of diffing against a known-good version of the generated code, referred to as the `golden-record`
(taken from the upstream's naming for their version of this test). Unit testing will break if the overridden template
which lives under `benchling_sdk/codegen/templates` is altered in a way which changes the output of the generated code.
In the event that the breaking changes to this test are intentional, you can regenerate the golden-record:
```
poetry run task regenerate_golden_record
```
## Integration Tests
Integration tests must be run manually, either via IDE test runners or by command line:
```bash
poetry run task integration
```
Integration tests will not run under CI yet and are currently tightly coupled to cesdktest.bnch.org. They
are most effective for quickly running manual regression testing.
%package -n python3-ce-bnch-sdk
Summary: SDK for interacting with the Benchling Platform.
Provides: python-ce-bnch-sdk
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-ce-bnch-sdk
# CE Benchling SDK
This is the Customer Engineering team's branch of the Benchling SDK, containing features that we are not yet ready to release to customers.
Currently, the only difference from the main Benchling SDK is the Benchling Apps CLI.
## Benching Apps CLI
The SDK comes with a CLI for managing Benchling Apps, which is still under alpha testing.
Each integration corresponds to a Benchling App. You declare the app's dependencies in a manifest file, typically a top-level file named `manifest.yaml`. For example:
```yaml
manifestVersion: 1 # Currently only version 1 exists
info:
name: My App
version: 0.0.1
description: Cure cancer # Optional
configuration:
- name: My Plasmid # Should match the actual name in Benchling, if possible, as apps tries to find the dependency by name
type: entity_schema # Corresponds to the API namespace, in this case /entity-schemas
subtype: dna_sequence # This section is only used by resources with type "entity-schema"
# Possible values for entities are: "custom_entity", "dna_sequence", or "aa_sequence"
description: Plasmid schema of interest # Optional
fieldDefinitions:
- name: My Backbone
- name: My Resistances
- name: Optical Density Assay
type: assay_run_schema
fieldDefinitions:
- name: optical_density # Run, result, and request schemas use the snake-cased "warehouse name"
- name: Resistance
type: dropdown
options:
- name: 1 - Ampicillin
- name: 2 - Penicillin
- name: My Project
type: project
```
Any resource type which is served by the Benchling API can be referenced, using its kebab-cased name. Below is the full list of possible values for `resourceType`. Schema types:
- entity_schema
- container_schema
- plate_schema
- box_schema
- location_schema
- assay_result_schema
- assay_run_schema
- request_schema
- entry_schema
- workflow_task_schema
- dropdown
- workflow_task_status
Individual resource types:
- aa_sequence
- assay_result
- assay_run
- automation_input_generator
- automation_output_processor
- blob
- box
- container
- custom_entity
- dna_alignment
- dna_oligo
- dna_sequence
- entry
- folder
- label_printer
- label_template
- location
- plate
- project
- registry
- request
Once you've declared the dependencies, you can generate the `dependencies.py` file and the model classes (in this case `my_plasmid.py`, `optical_density_assay.py`, and `resistance.py`) using the command:
```bash
# Optional arguments `--manifest-file-path`, `dependencies_file_path`, `model_directory_path` to specify the exact paths
poetry run benchling-sdk app dependencies scaffold
```
Next, once a Benchling tenant has been set up where you want to run the integration, you can link each dependency to its corresponding Benchling API ID by using the configuration UI for Benchling Apps in the tenant.
Now the integration will have full access to all its required dependencies. See the documentation in the generated files for more detailed instructions on usage in the integration code.
## General Usage
For more detailed usage of the SDK, refer to the [public release notes](https://pypi.org/project/benchling-sdk/), which are stored as part of the project
in `publish/README.public.md`.
Simple usage example iterating through DNA sequences:
```python
from benchling_sdk.auth.api_key_auth import ApiKeyAuth
from benchling_sdk.benchling import Benchling
benchling = Benchling(url="https://my.benchling.com", auth_method=ApiKeyAuth("api_key"))
dna_sequence_pages = benchling.dna_sequences.list()
for page in dna_sequence_pages:
for dna_sequence in page:
print(dna_sequence.bases)
```
## Developer Notes
The `benching_sdk.benchling.Benchling` object serves as the point of entry for the SDK. API calls are organized into
services that generally correspond to [Capillary documentation](https://docs.benchling.com/reference).
Each method calling the API is wrapped with an `@api_method` decorator. This decorator applies several global
behaviors which may not be readily obvious including:
* Conditionally adding some logging on each method call
* Applying retries via the backoff library when `RetryStrategy` is configured
Logging in the SDK follows the [Python best practice](https://docs.python-guide.org/writing/logging/#logging-in-a-library)
of only adding the `logging.NullHandler()`. An example of enabling basic logging:
```python
import logging
logging.basicConfig(level=logging.INFO)
```
For more details on configuring or disabling `RetryStrategy`, refer to *Advanced Use Cases* in `publish/README.public.md`.
HTTP errors like `404` not found are all caught via `raise_for_status()` and transformed into
a standardized `BenchlingError` which wraps the underlying error for a better general error handling experience.
A caught BenchlingError can be inspected to learn the status triggering it, and the full contents of the error
response returned from the Benchling server.
### Exporting Models
Although generated models are packaged in `benchling_api_client.models`
and its files, we externalize the models via `benchling_sdk.models` in
order to abstract `benchling_api_client` from users such that they may
simply import `benchling_sdk.models.ExampleModelClass`.
This is accomplished in `benchling_sdk/models/__init__.py`. This file
is automatically generated from a Jinja template in `templates/` by
running `poetry run task models`. Changes should be committed to source
control. All tasks should be run from the root directory of the project.
Missing models from `benchling_api_client` are verified by unit
test in `benchling-sdk/tests/unit/test_models.py`.
## Configuring pre-push Git Hooks
```bash
poetry run pre-commit install --hook-type pre-push
```
## Publishing Releases
To create a release of the SDK, create a tag in Git from the `main` branch. CI will then
initiate a build, generate the client, and publish the resulting packages.
The published version will reflect the tag, so a tag of `1.0.4` will publish version `1.0.4`. Tags that do not meet
Poetry's [version format](https://semver.org/) will create a failed build when publishing is attempted.
This README will not be published alongside the public package. To modify the public README, modify
`publish/README.public.md`. The changes will be copied over when preparing for publishing.
*NOTE*: There are some scripts executed that make changes to the working directory and its files with the intention
of them being discarded (e.g., during CI). If running the scripts locally, exercise caution and save your changes
first.
## Code Generation Unit Tests
This project uses a feature of the `openapi-python-client` dependency to override one of the templates used for code
generation in that project. Since this project alters how code generation works, it includes unit testing around that
generation in the form of diffing against a known-good version of the generated code, referred to as the `golden-record`
(taken from the upstream's naming for their version of this test). Unit testing will break if the overridden template
which lives under `benchling_sdk/codegen/templates` is altered in a way which changes the output of the generated code.
In the event that the breaking changes to this test are intentional, you can regenerate the golden-record:
```
poetry run task regenerate_golden_record
```
## Integration Tests
Integration tests must be run manually, either via IDE test runners or by command line:
```bash
poetry run task integration
```
Integration tests will not run under CI yet and are currently tightly coupled to cesdktest.bnch.org. They
are most effective for quickly running manual regression testing.
%package help
Summary: Development documents and examples for ce-bnch-sdk
Provides: python3-ce-bnch-sdk-doc
%description help
# CE Benchling SDK
This is the Customer Engineering team's branch of the Benchling SDK, containing features that we are not yet ready to release to customers.
Currently, the only difference from the main Benchling SDK is the Benchling Apps CLI.
## Benching Apps CLI
The SDK comes with a CLI for managing Benchling Apps, which is still under alpha testing.
Each integration corresponds to a Benchling App. You declare the app's dependencies in a manifest file, typically a top-level file named `manifest.yaml`. For example:
```yaml
manifestVersion: 1 # Currently only version 1 exists
info:
name: My App
version: 0.0.1
description: Cure cancer # Optional
configuration:
- name: My Plasmid # Should match the actual name in Benchling, if possible, as apps tries to find the dependency by name
type: entity_schema # Corresponds to the API namespace, in this case /entity-schemas
subtype: dna_sequence # This section is only used by resources with type "entity-schema"
# Possible values for entities are: "custom_entity", "dna_sequence", or "aa_sequence"
description: Plasmid schema of interest # Optional
fieldDefinitions:
- name: My Backbone
- name: My Resistances
- name: Optical Density Assay
type: assay_run_schema
fieldDefinitions:
- name: optical_density # Run, result, and request schemas use the snake-cased "warehouse name"
- name: Resistance
type: dropdown
options:
- name: 1 - Ampicillin
- name: 2 - Penicillin
- name: My Project
type: project
```
Any resource type which is served by the Benchling API can be referenced, using its kebab-cased name. Below is the full list of possible values for `resourceType`. Schema types:
- entity_schema
- container_schema
- plate_schema
- box_schema
- location_schema
- assay_result_schema
- assay_run_schema
- request_schema
- entry_schema
- workflow_task_schema
- dropdown
- workflow_task_status
Individual resource types:
- aa_sequence
- assay_result
- assay_run
- automation_input_generator
- automation_output_processor
- blob
- box
- container
- custom_entity
- dna_alignment
- dna_oligo
- dna_sequence
- entry
- folder
- label_printer
- label_template
- location
- plate
- project
- registry
- request
Once you've declared the dependencies, you can generate the `dependencies.py` file and the model classes (in this case `my_plasmid.py`, `optical_density_assay.py`, and `resistance.py`) using the command:
```bash
# Optional arguments `--manifest-file-path`, `dependencies_file_path`, `model_directory_path` to specify the exact paths
poetry run benchling-sdk app dependencies scaffold
```
Next, once a Benchling tenant has been set up where you want to run the integration, you can link each dependency to its corresponding Benchling API ID by using the configuration UI for Benchling Apps in the tenant.
Now the integration will have full access to all its required dependencies. See the documentation in the generated files for more detailed instructions on usage in the integration code.
## General Usage
For more detailed usage of the SDK, refer to the [public release notes](https://pypi.org/project/benchling-sdk/), which are stored as part of the project
in `publish/README.public.md`.
Simple usage example iterating through DNA sequences:
```python
from benchling_sdk.auth.api_key_auth import ApiKeyAuth
from benchling_sdk.benchling import Benchling
benchling = Benchling(url="https://my.benchling.com", auth_method=ApiKeyAuth("api_key"))
dna_sequence_pages = benchling.dna_sequences.list()
for page in dna_sequence_pages:
for dna_sequence in page:
print(dna_sequence.bases)
```
## Developer Notes
The `benching_sdk.benchling.Benchling` object serves as the point of entry for the SDK. API calls are organized into
services that generally correspond to [Capillary documentation](https://docs.benchling.com/reference).
Each method calling the API is wrapped with an `@api_method` decorator. This decorator applies several global
behaviors which may not be readily obvious including:
* Conditionally adding some logging on each method call
* Applying retries via the backoff library when `RetryStrategy` is configured
Logging in the SDK follows the [Python best practice](https://docs.python-guide.org/writing/logging/#logging-in-a-library)
of only adding the `logging.NullHandler()`. An example of enabling basic logging:
```python
import logging
logging.basicConfig(level=logging.INFO)
```
For more details on configuring or disabling `RetryStrategy`, refer to *Advanced Use Cases* in `publish/README.public.md`.
HTTP errors like `404` not found are all caught via `raise_for_status()` and transformed into
a standardized `BenchlingError` which wraps the underlying error for a better general error handling experience.
A caught BenchlingError can be inspected to learn the status triggering it, and the full contents of the error
response returned from the Benchling server.
### Exporting Models
Although generated models are packaged in `benchling_api_client.models`
and its files, we externalize the models via `benchling_sdk.models` in
order to abstract `benchling_api_client` from users such that they may
simply import `benchling_sdk.models.ExampleModelClass`.
This is accomplished in `benchling_sdk/models/__init__.py`. This file
is automatically generated from a Jinja template in `templates/` by
running `poetry run task models`. Changes should be committed to source
control. All tasks should be run from the root directory of the project.
Missing models from `benchling_api_client` are verified by unit
test in `benchling-sdk/tests/unit/test_models.py`.
## Configuring pre-push Git Hooks
```bash
poetry run pre-commit install --hook-type pre-push
```
## Publishing Releases
To create a release of the SDK, create a tag in Git from the `main` branch. CI will then
initiate a build, generate the client, and publish the resulting packages.
The published version will reflect the tag, so a tag of `1.0.4` will publish version `1.0.4`. Tags that do not meet
Poetry's [version format](https://semver.org/) will create a failed build when publishing is attempted.
This README will not be published alongside the public package. To modify the public README, modify
`publish/README.public.md`. The changes will be copied over when preparing for publishing.
*NOTE*: There are some scripts executed that make changes to the working directory and its files with the intention
of them being discarded (e.g., during CI). If running the scripts locally, exercise caution and save your changes
first.
## Code Generation Unit Tests
This project uses a feature of the `openapi-python-client` dependency to override one of the templates used for code
generation in that project. Since this project alters how code generation works, it includes unit testing around that
generation in the form of diffing against a known-good version of the generated code, referred to as the `golden-record`
(taken from the upstream's naming for their version of this test). Unit testing will break if the overridden template
which lives under `benchling_sdk/codegen/templates` is altered in a way which changes the output of the generated code.
In the event that the breaking changes to this test are intentional, you can regenerate the golden-record:
```
poetry run task regenerate_golden_record
```
## Integration Tests
Integration tests must be run manually, either via IDE test runners or by command line:
```bash
poetry run task integration
```
Integration tests will not run under CI yet and are currently tightly coupled to cesdktest.bnch.org. They
are most effective for quickly running manual regression testing.
%prep
%autosetup -n ce-bnch-sdk-2.2.0b0
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-ce-bnch-sdk -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 2.2.0b0-1
- Package Spec generated
|