forked from namalkanti/bloch-simulator-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (13 loc) · 625 Bytes
/
setup.py
File metadata and controls
15 lines (13 loc) · 625 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup, Extension
import numpy.distutils.misc_util
setup(
name = "Bloch Simulator Library",
version = "1.0",
description = "Bloch Simulator and helper modules. Originally written by Brian Hargreaves and Mikki Lustig in Matlab.",
author = "Niraj Amalkant",
author_email = "neji49@gmail.com",
url = "https://github.com/neji49/bloch-simulator-python",
packages = ["bloch"],
ext_modules=[Extension("bloch.bloch_simulator", ["bloch/bloch_simulator.c"])],
include_dirs=numpy.distutils.misc_util.get_numpy_include_dirs(),
)