aboutsummaryrefslogtreecommitdiffstats
path: root/tests/shlib_test/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shlib_test/setup.py')
-rwxr-xr-xtests/shlib_test/setup.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/shlib_test/setup.py b/tests/shlib_test/setup.py
deleted file mode 100755
index b0c93996..00000000
--- a/tests/shlib_test/setup.py
+++ /dev/null
@@ -1,10 +0,0 @@
-from setuptools import setup, Extension, Library
-
-setup(
- name="shlib_test",
- ext_modules = [
- Library("hellolib", ["hellolib.c"]),
- Extension("hello", ["hello.pyx"], libraries=["hellolib"])
- ],
- test_suite="test_hello.HelloWorldTest",
-)