models
Core models for the somesy package.
SomesyBaseModel ¶
Bases: BaseModel
Customized pydantic BaseModel for somesy.
Apart from some general tweaks for better defaults,
adds a private _key_order
field, which is used to track the
preferred order for serialization (usually coming from some existing input).
It can be set on an instance using the set_key_order method,
and is preserved by copy()
.
NOTE: The custom order is intended for leaf models (no further nested models), custom order will not work correctly across nesting layers.
Source code in src/somesy/core/models.py
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 |
|
make_partial
classmethod
¶
make_partial(dct)
Construct unvalidated partial model from dict.
Handles aliases correctly, unlike construct
.
Source code in src/somesy/core/models.py
64 65 66 67 68 69 70 71 |
|
set_key_order ¶
set_key_order(keys: List[str])
Setter for custom key order used in serialization.
Source code in src/somesy/core/models.py
73 74 75 76 77 |
|
model_copy ¶
model_copy(*args, **kwargs)
Patched copy method (to preserve custom key order).
Source code in src/somesy/core/models.py
79 80 81 82 83 |
|
model_dump ¶
model_dump(*args, **kwargs)
Patched dict method (to preserve custom key order).
Source code in src/somesy/core/models.py
105 106 107 108 109 110 111 112 113 114 115 |
|
model_dump_json ¶
model_dump_json(*args, **kwargs)
Patched json method (to preserve custom key order).
Source code in src/somesy/core/models.py
117 118 119 120 121 122 123 124 125 126 127 128 |
|
SomesyConfig ¶
Bases: SomesyBaseModel
Pydantic model for somesy tool configuration.
Note that all fields match CLI options, and CLI options will override the
values declared in a somesy input file (such as somesy.toml
).
Source code in src/somesy/core/models.py
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 |
|
at_least_one_target
classmethod
¶
at_least_one_target(values)
Check that at least one output file is enabled.
Source code in src/somesy/core/models.py
151 152 153 154 155 156 157 158 159 |
|
log_level ¶
log_level() -> SomesyLogLevel
Return log level derived from this configuration.
Source code in src/somesy/core/models.py
260 261 262 263 264 |
|
update_log_level ¶
update_log_level(log_level: SomesyLogLevel)
Update config flags according to passed log level.
Source code in src/somesy/core/models.py
266 267 268 269 270 |
|
get_input ¶
get_input() -> SomesyInput
Based on the somesy config, load the complete somesy input.
Source code in src/somesy/core/models.py
272 273 274 275 276 277 278 279 280 281 |
|
resolve_paths ¶
resolve_paths(base_dir: Path) -> None
Resolve all paths in the config relative to the given base directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
base_dir |
Path
|
The base directory to resolve paths against. |
required |
Source code in src/somesy/core/models.py
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 |
|
ContributorBaseModel ¶
Bases: SomesyBaseModel
Base model for Person and Entity models.
This schema is based on CITATION.cff 1.2, modified and extended for the needs of somesy.
Source code in src/somesy/core/models.py
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 |
|
author_implies_publication
classmethod
¶
author_implies_publication(values)
Ensure consistency of author and publication_author.
Source code in src/somesy/core/models.py
392 393 394 395 396 397 398 399 400 401 402 |
|
to_name_email_string ¶
to_name_email_string() -> str
Convert project metadata person object to poetry string for person format full name <x@y.z>
.
Source code in src/somesy/core/models.py
410 411 412 413 414 415 |
|
from_name_email_string
classmethod
¶
from_name_email_string(person: str)
Return the type of class based on an name/e-mail string like full name <x@y.z>
.
If the name is A B C
, then A B
will be the given names and C
will be the family name.
Source code in src/somesy/core/models.py
417 418 419 420 421 422 423 |
|
Entity ¶
Bases: ContributorBaseModel
Metadata about an entity in the context of a software project ownership.
An entity, i.e., an institution, team, research group, company, conference, etc., as opposed to a single natural person. This schema is based on CITATION.cff 1.2, modified and extended for the needs of somesy.
Source code in src/somesy/core/models.py
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 |
|
from_name_email_string
classmethod
¶
from_name_email_string(entity: str) -> Entity
Return an Entity
based on an name/e-mail string like name <x@y.z>
.
Source code in src/somesy/core/models.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 |
|
same_person ¶
same_person(other: Entity) -> bool
Return whether two Entity metadata records are about the same real person.
Uses heuristic match based on email and name (whichever are provided).
Source code in src/somesy/core/models.py
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
|
model_dump_json ¶
model_dump_json(*args, **kwargs)
Patched json method (to preserve custom key order), remove rorid and set it as website if it is not None.
Source code in src/somesy/core/models.py
508 509 510 511 512 513 514 515 516 517 |
|
Person ¶
Bases: ContributorBaseModel
Metadata about a person in the context of a software project.
This schema is based on CITATION.cff 1.2, modified and extended for the needs of somesy.
Source code in src/somesy/core/models.py
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 |
|
from_name_email_string
classmethod
¶
from_name_email_string(person: str) -> Person
Return a Person
based on an name/e-mail string like full name <x@y.z>
.
If the name is A B C
, then A B
will be the given names and C
will be the family name.
Source code in src/somesy/core/models.py
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 |
|
same_person ¶
same_person(other) -> bool
Return whether two Person metadata records are about the same real person.
Uses heuristic match based on orcid, email and name (whichever are provided).
Source code in src/somesy/core/models.py
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 |
|
ProjectMetadata ¶
Bases: SomesyBaseModel
Pydantic model for Project Metadata Input.
Source code in src/somesy/core/models.py
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 |
|
ensure_distinct_people
classmethod
¶
ensure_distinct_people(people)
Make sure that no person is listed twice in the same list.
Source code in src/somesy/core/models.py
651 652 653 654 655 656 657 658 659 660 661 662 |
|
ensure_distinct_entities
classmethod
¶
ensure_distinct_entities(entities)
Make sure that no entity is listed twice in the same list.
Source code in src/somesy/core/models.py
664 665 666 667 668 669 670 671 672 673 674 675 |
|
at_least_one_author ¶
at_least_one_author() -> ProjectMetadata
Make sure there is at least one author.
Source code in src/somesy/core/models.py
677 678 679 680 681 682 683 684 685 686 687 688 |
|
authors ¶
authors()
Return people and entities explicitly marked as authors.
Source code in src/somesy/core/models.py
727 728 729 730 731 |
|
publication_authors ¶
publication_authors()
Return people marked as publication authors.
This always includes people marked as authors.
Source code in src/somesy/core/models.py
733 734 735 736 737 738 739 740 741 742 743 744 745 |
|
maintainers ¶
maintainers()
Return people and entities marked as maintainers.
Source code in src/somesy/core/models.py
747 748 749 750 751 |
|
contributors ¶
contributors()
Return only people and entities not marked as authors.
Source code in src/somesy/core/models.py
753 754 755 756 757 |
|
SomesyInput ¶
Bases: SomesyBaseModel
The complete somesy input file (somesy.toml
) or section (pyproject.toml
).
Source code in src/somesy/core/models.py
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 |
|
set_origin ¶
set_origin()
Set the origin of the input file.
Source code in src/somesy/core/models.py
778 779 780 781 782 783 |
|
is_somesy_file ¶
is_somesy_file() -> bool
Return whether this somesy input is from a somesy config file.
That means, returns False if it is from pyproject.toml or package.json.
Source code in src/somesy/core/models.py
785 786 787 788 789 790 |
|
is_somesy_file_path
classmethod
¶
is_somesy_file_path(path: Path) -> bool
Return whether the path looks like a somesy config file.
That means, returns False if it is e.g. pyproject.toml or package.json.
Source code in src/somesy/core/models.py
792 793 794 795 796 797 798 |
|
from_input_file
classmethod
¶
from_input_file(path: Path) -> SomesyInput
Load somesy input from given file.
Source code in src/somesy/core/models.py
800 801 802 803 804 805 806 |
|