Materials-Data-Science-and-Informatics / somesy

A CLI tool for synchronizing software project metadata
https://materials-data-science-and-informatics.github.io/somesy/main/
MIT License
12 stars 2 forks source link

Add organisation type for supplying contact information #79

Open flrnslbch opened 8 months ago

flrnslbch commented 8 months ago

We would like to add a general email as maintainer contact, for example:

pyproject.toml:

[[project.maintainers]]
name = "Institute of Interesting Research"
email = "support@institue-interesting-research.edu"

codemeta.json:

"maintainer": [
  {
    "@type": "Organisation",
    "name": "Institute of Interesting Research",
    "emai": "support@institue-interesting-research.edu",
    "@id": "https://orcid.org/xxxx-xxxx-xxxx-xxxx"
  },

citation.cff

contact:
  - name: Institute of Interesting Research
  - email: support@institue-interesting-research.edu

Other projects such as NumPy also just have a general mail adress listed under maintainers/contact on PyPi. CFF, codemeta and pyproject.toml all support this feature (the above examples should be valid).

Could you add this functionality to your datamodel and conversion tool?

mustafasoylu commented 7 months ago

@flrnslbch Thanks for the information, we are planning to implement this feature in the next iteration.