Skip to content
Snippets Groups Projects
Commit 867b7658 authored by Michele Nottoli's avatar Michele Nottoli
Browse files

Added setup.py and prototype for a test.

parent b0034d8b
Branches
Tags
No related merge requests found
setup.py 0 → 100644
from setuptools import setup, find_packages
setup(
name="grext",
version="0.1.0",
packages=find_packages(),
install_requires=["numpy"],
author="Michele Nottoli",
description="Tools for generating new guesses for SCF calculations.",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
import os
import sys
import numpy as np
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import grext
def test_grassmann():
grext.Extrapolator(10, 10, 10, 10)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment