diff options
| author | PJ Eby <distutils-sig@python.org> | 2006-01-05 23:14:21 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2006-01-05 23:14:21 +0000 |
| commit | bda5b372b2b631048897ec5ecee6eee98b3b06a9 (patch) | |
| tree | c32de3922b34596a9a609c8a4589d174be451a9d /setuptools/__init__.py | |
| parent | b28da64e5120e9c2fd5b964fb46f7f2ded2eb5a3 (diff) | |
| download | python-setuptools-git-bda5b372b2b631048897ec5ecee6eee98b3b06a9.tar.gz | |
First draft of shared library build support. See tests/shlib_test
for a trivial example. This has only been tested on Windows with
a MinGW compiler, and the Mac OS support isn't finished. Testing
w/other platforms+compilers would be helpful.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041927
Diffstat (limited to 'setuptools/__init__.py')
| -rw-r--r-- | setuptools/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index d545f2a5..4c14fe3a 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -1,8 +1,7 @@ - """Extensions to the 'distutils' for large or complex distributions""" +from setuptools.extension import Extension, SharedLibrary from setuptools.dist import Distribution, Feature, _get_unpatched import distutils.core, setuptools.command -from setuptools.extension import Extension from setuptools.depends import Require from distutils.core import Command as _Command from distutils.util import convert_path |
