removed remainders of Corientation compilation

This commit is contained in:
Martin Diehl 2016-07-14 16:10:59 +02:00
parent 9e3f4b1ec4
commit 787a8da1c3
2 changed files with 2 additions and 21 deletions

View File

@ -10,10 +10,8 @@ from .environment import Environment # noqa
from .asciitable import ASCIItable # noqa
from .config import Material # noqa
from .colormaps import Colormap, Color # noqa
try:
from .corientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
except:
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
from .orientation import Quaternion, Rodrigues, Symmetry, Orientation # noqa
#from .block import Block # only one class
from .result import Result # noqa
from .geometry import Geometry # noqa

View File

@ -1,17 +0,0 @@
#!/usr/bin/env python2
# -*- coding: UTF-8 no BOM -*-
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy as np
ext = [Extension("corientation", ["corientation.pyx"],
include_dirs=[np.get_include()])]
setup(
name="corientation",
include_dirs=[np.get_include()],
cmdclass = {'build_ext': build_ext},
ext_modules=ext
)