Skip to content
Snippets Groups Projects
Commit fa106662 authored by Luigi Sbailo's avatar Luigi Sbailo
Browse files

Add setup file

parent 97e3247f
Branches
No related tags found
No related merge requests found
setup.py 0 → 100644
import json
from setuptools import setup, find_packages
with open('metainfo.json') as file:
metainfo = json.load(file)
setup(
name='error_estimates',
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', 'matplotlib', 'nglview', 'ase', 'bokeh'],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment