Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions packages/cookiecutter-scverse/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: cookiecutter-scverse
description: |
Cookiecutter template for scverse packages offering automated template sync
project_home: https://github.com/scverse/cookiecutter-scverse
documentation_home: https://cookiecutter-scverse-instance.readthedocs.io/en/latest/template_usage.html
tags:
- template
- cookiecutter
license: BSD-3-Clause
version: 0.6.0
contact:
- grst
- flying-sheep
category: core-infrastructure
13 changes: 13 additions & 0 deletions packages/ecosystem-packages/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: ecosystem-packages
description: |
Registry for scverse ecosystem packages (https://scverse.org/packages/#ecosystem)
project_home: https://github.com/scverse/ecosystem-packages
documentation_home: https://github.com/scverse/ecosystem-packages
tags:
- registry
- ecosystem
license: BSD-3-Clause
contact:
- grst
- flying-sheep
category: core-infrastructure
14 changes: 14 additions & 0 deletions packages/governance/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: governance
description: |
Governance docs for scverse
project_home: https://github.com/scverse/governance
documentation_home: https://scverse.org/about
tags:
- governance
- documentation
license: BSD-3-Clause
contact:
- Zethson
- gtca
- mikelkou
category: core-infrastructure
13 changes: 13 additions & 0 deletions packages/integration-testing/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: integration-testing
description: |
A repo for integration testing core packages against upstream core packages
project_home: https://github.com/scverse/integration-testing
documentation_home: https://github.com/scverse/integration-testing
tags:
- testing
- continuous integration
license: MIT
contact:
- ilan-gold
- flying-sheep
category: core-infrastructure
15 changes: 15 additions & 0 deletions packages/scverse-tutorials/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: scverse-tutorials
description: |
Tutorials and tutorials registry for scverse.org/learn.
project_home: https://github.com/scverse/scverse-tutorials
documentation_home: https://scverse-tutorials.readthedocs.io/en/latest/
tutorials_home: https://scverse-tutorials.readthedocs.io/en/latest/
tags:
- tutorials
- education
- documentation
license: BSD-3-Clause
contact:
- grst
- flying-sheep
Comment on lines +12 to +14
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this true? Nobody else feels responsible for this?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm afraid yes. Would you have someone in mind?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don’t have anyone who likes writing tutorials? We need to fix that.

category: core-infrastructure
12 changes: 12 additions & 0 deletions packages/scverse.github.io/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: scverse.github.io
description: |
scverse.org website
project_home: https://github.com/scverse/scverse.github.io
documentation_home: https://scverse.org
tags:
- website
- documentation
license: BSD-3-Clause
authors:
- gtca
category: core-infrastructure
13 changes: 13 additions & 0 deletions packages/stats/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: stats
description: |
Statistics for scverse
project_home: https://github.com/scverse/stats
documentation_home: https://scverse.org/stats/
tags:
- statistics
- metrics
license: MIT
authors:
- maltekuehl
- grst
category: core-infrastructure
21 changes: 15 additions & 6 deletions scripts/src/ecosystem_scripts/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
},
"test_command": {
"description": "A shell command to install the package and execute the tests, assuming you are inside a freshly cloned copy of the package repository. Often this will be `pip install \".[test]\" && pytest`",
"type": ["string", "null"]
"type": ["string"]
},
"category": {
"type": "string",
Expand All @@ -242,11 +242,20 @@
"description",
"project_home",
"documentation_home",
"install",
"license",
"tags",
"version",
"category",
"contact"
]
"category"
],
"if": {
"not": {
"properties": {
"category": {
"const": "core-infrastructure"
}
}
}
},
"then": {
"required": ["install", "version"]
}
}