Skip to content
Snippets Groups Projects
Commit 6cb5a929 authored by Adam Fekete's avatar Adam Fekete
Browse files

new structure

parent f0f4edad
Branches
Tags
No related merge requests found
Showing with 128 additions and 832 deletions
This diff is collapsed.
{
"authors": [
"John, Doe",
"Bob, Alice"
],
"email": "user@domain.com",
"title": "Title of the tutorial",
"description": "In this tutorial we will ...",
"url": "https://gitlab.mpcdf.mpg.de/nomad-lab/analytics-tutorial-template",
"link": "https://analytics-toolkit.nomad-coe.eu/hub/user-redirect/notebooks/tutorials/Welcome.ipynb",
"created": "",
"updated": "",
"flags":{
"isPublic": false,
"featured": false,
"top_of_list": false
},
"labels": {
"application_keyword": [
"keyword1",
"keyword2"
],
"application_section": [
"Materials property prediction"
],
"application_system": [
"System"
],
"category": [
"Tutorial"
],
"data_analytics_method": [
"Clustering"
],
"platform": [
"jupyter"
]
}
}
\ No newline at end of file
setup.py 0 → 100644
import json
from setuptools import setup, find_packages
with open('metainfo.json') as file:
metainfo = json.load(file)
setup(
name='band_structure_visualization',
version='1.0',
author=', '.join(metainfo['authors']),
author_email=metainfo['email'],
url=metainfo['url'],
description=metainfo['title'],
long_description=metainfo['description'],
packages=find_packages(),
install_requires=[],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment