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

adding setup script and metainfo file

parent 5d21883b
No related branches found
No related tags found
1 merge request!1Add setup script
{
"authors": [
"Benjamin, Reglerand",
"Matthias, Scheffler",
"Luca, Ghiringhelli"
],
"email": "refler@fhi-berlin.mpg.de",
"title": "Total cumulative mutual information",
"description": "This interactive notebook includes the original implementation of total cumulative mutual information (TCMI) to reproduce the main results presented in the publication.",
"url": "https://gitlab.mpcdf.mpg.de/rbenj/analytics-tcmi",
"link": "https://analytics-toolkit.nomad-coe.eu/hub/user-redirect/notebooks/tutorials/tcmi.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='tcmi',
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=['numpy', 'scipy', 'pandas'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment