aboutsummaryrefslogtreecommitdiffstats
path: root/tests/shlib_test/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-01-06 19:57:36 +0000
committerPJ Eby <distutils-sig@python.org>2006-01-06 19:57:36 +0000
commit5d732201ae2c910ebd00a882d33d70bc47056662 (patch)
tree477abc232e66761da651880d67d4390c98b9f243 /tests/shlib_test/setup.py
parent59e6023baf87bd578ca73bd534d35917592f3a76 (diff)
downloadexternal_python_setuptools-5d732201ae2c910ebd00a882d33d70bc47056662.tar.gz
external_python_setuptools-5d732201ae2c910ebd00a882d33d70bc47056662.tar.bz2
external_python_setuptools-5d732201ae2c910ebd00a882d33d70bc47056662.zip
SharedLibrary -> Library. For now, Windows libs get built as shared,
and other platforms get static. :( --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041941
Diffstat (limited to 'tests/shlib_test/setup.py')
-rwxr-xr-xtests/shlib_test/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shlib_test/setup.py b/tests/shlib_test/setup.py
index 122de77c..b0c93996 100755
--- a/tests/shlib_test/setup.py
+++ b/tests/shlib_test/setup.py
@@ -1,9 +1,9 @@
-from setuptools import setup, Extension, SharedLibrary
+from setuptools import setup, Extension, Library
setup(
name="shlib_test",
ext_modules = [
- SharedLibrary("hellolib", ["hellolib.c"]),
+ Library("hellolib", ["hellolib.c"]),
Extension("hello", ["hello.pyx"], libraries=["hellolib"])
],
test_suite="test_hello.HelloWorldTest",