From 72d7548cf4cd37900a5870d9603023d7bccc97ce Mon Sep 17 00:00:00 2001
From: Daniel Ecer <de-code@users.noreply.github.com>
Date: Thu, 31 Jan 2019 10:07:22 +0000
Subject: [PATCH] fixed obsolete reference to alignment in setyp.py (#55)

---
 setup.py | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/setup.py b/setup.py
index b32f1b2..4a4d5d3 100644
--- a/setup.py
+++ b/setup.py
@@ -9,8 +9,7 @@ from distutils.command.build import build  # pylint: disable=import-error, no-na
 from setuptools import (
     find_packages,
     setup,
-    Command,
-    Extension
+    Command
 )
 
 import numpy as np
@@ -84,12 +83,6 @@ setup(
         'setuptools>=18.0',
         'cython',
     ],
-    ext_modules=[
-        Extension(
-            'sciencebeam_gym.alignment.align_fast_utils',
-            sources=['sciencebeam_gym/alignment/align_fast_utils.pyx'],
-        ),
-    ],
     include_dirs=[np.get_include()],
     cmdclass={
         'build': CustomBuild,
-- 
GitLab