All Samples(17990) | Call(8562) | Derive(0) | Import(9428)
The gateway to the Distutils: do everything your setup script needs to do, in a highly flexible and user-driven way. Briefly: create a Distribution instance; find and parse config files; parse the command line; run each Distutils command found there, customized by the options supplied to 'setup()' (as keyword arguments), in config files, and on the command line. The Distribution instance might be an instance of a class supplied via the 'distclass' keyword argument to 'setup'; if no such class is supplied, then the Distribution class (in dist.py) is instantiated.(more...)
All Samples(13826) | Call(6567) | Derive(0) | Import(7259)
Return a list all Python packages found within directory 'where' 'where' should be supplied as a "cross-platform" (i.e. URL-style) path; it will be converted to the appropriate local path syntax. 'exclude' is a sequence of package names to exclude; '*' can be used as a wildcard in the names, such that 'foo.*' will exclude all subpackages of 'foo' (but not 'foo' itself).
All Samples(850) | Call(387) | Derive(13) | Import(450)
Extension that uses '.c' files in place of '.pyx' files
All Samples(92) | Call(52) | Derive(0) | Import(40)
A subset of the distribution that can be excluded if unneeded/wanted
Features are created using these keyword arguments:
'description' -- a short, human readable description of the feature, to
be used in error messages, and option help messages.
'standard' -- if true, the feature is included by default if it is
available on the current system. Otherwise, the feature is only
included if requested via a command line '--with-X' option, or if(more...)
All Samples(13) | Call(0) | Derive(6) | Import(7)
Distribution with support for features, tests, and package data
This is an enhanced version of 'distutils.dist.Distribution' that
effectively adds the following new optional keyword arguments to 'setup()':
'install_requires' -- a string or sequence of strings specifying project
versions that the distribution requires when installed, in the format
used by 'pkg_resources.require()'. They will be installed
automatically when the package is installed. If you wish to use
packages that are not available in PyPI, or want to give your users an(more...)
All Samples(11) | Call(5) | Derive(0) | Import(6)
Just like a regular Extension, but built as a library instead
All Samples(0) | Call(0) | Derive(0) | Import(0)
No Document.
All Samples(0) | Call(0) | Derive(0) | Import(0)
No Document.
All Samples(6) | Call(5) | Derive(0) | Import(1)
Find all files under 'dir' and return the list of full filenames (relative to 'dir').
All Samples(0) | Call(0) | Derive(0) | Import(0)
Tests for the 'setuptools' package