make it a package

This commit is contained in:
Valentin Boettcher 2022-03-22 10:12:58 +01:00
parent 786f853671
commit f11d6a4311
7 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[tool.poetry]
name = "two_qubit_model"
name = "hiro_models"
version = "1.1.0"
description = "Operators for a general model of two interacting qubits coupled to two baths."
authors = ["Valentin Boettcher <hiro at protagon.space>"]

View file

@ -1,6 +1,6 @@
import pytest
import random
from one_qubit_model import *
from models.one_qubit_model import *
from qutip import *
from utility import assert_serializable
import scipy.integrate

View file

@ -1,6 +1,6 @@
import pytest
import random
from two_qubit_model import *
from models.two_qubit_model import *
from qutip import *
from utility import assert_serializable