@@ -43,6 +43,7 @@ class Extension(_Extension):
43
43
:arg str name:
44
44
the full name of the extension, including any packages -- ie.
45
45
*not* a filename or pathname, but Python dotted name
46
+
46
47
:arg list[str] sources:
47
48
list of source filenames, relative to the distribution root
48
49
(where the setup script lives), in Unix form (slash-separated)
@@ -53,49 +54,62 @@ class Extension(_Extension):
53
54
:keyword list[str] include_dirs:
54
55
list of directories to search for C/C++ header files (in Unix
55
56
form for portability)
57
+
56
58
:keyword list[tuple[str, str|None]] define_macros:
57
59
list of macros to define; each macro is defined using a 2-tuple:
58
60
the first item corresponding to the name of the macro and the second
59
61
item either a string with its value or None to
60
62
define it without a particular value (equivalent of "#define
61
63
FOO" in source or -DFOO on Unix C compiler command line)
64
+
62
65
:keyword list[str] undef_macros:
63
66
list of macros to undefine explicitly
67
+
64
68
:keyword list[str] library_dirs:
65
69
list of directories to search for C/C++ libraries at link time
70
+
66
71
:keyword list[str] libraries:
67
72
list of library names (not filenames or paths) to link against
73
+
68
74
:keyword list[str] runtime_library_dirs:
69
75
list of directories to search for C/C++ libraries at run time
70
76
(for shared extensions, this is when the extension is loaded)
77
+
71
78
:keyword list[str] extra_objects:
72
79
list of extra files to link with (eg. object files not implied
73
80
by 'sources', static library that must be explicitly specified,
74
81
binary resource files, etc.)
82
+
75
83
:keyword list[str] extra_compile_args:
76
84
any extra platform- and compiler-specific information to use
77
85
when compiling the source files in 'sources'. For platforms and
78
86
compilers where "command line" makes sense, this is typically a
79
87
list of command-line arguments, but for other platforms it could
80
88
be anything.
89
+
81
90
:keyword list[str] extra_link_args:
82
91
any extra platform- and compiler-specific information to use
83
92
when linking object files together to create the extension (or
84
93
to create a new static Python interpreter). Similar
85
94
interpretation as for 'extra_compile_args'.
95
+
86
96
:keyword list[str] export_symbols:
87
97
list of symbols to be exported from a shared extension. Not
88
98
used on all platforms, and not generally necessary for Python
89
99
extensions, which typically export exactly one symbol: "init" +
90
100
extension_name.
101
+
91
102
:keyword list[str] swig_opts:
92
103
any extra options to pass to SWIG if a source file has the .i
93
104
extension.
105
+
94
106
:keyword list[str] depends:
95
107
list of files that the extension depends on
108
+
96
109
:keyword str language:
97
110
extension language (i.e. "c", "c++", "objc"). Will be detected
98
111
from the source extensions if not provided.
112
+
99
113
:keyword bool optional:
100
114
specifies that a build failure in the extension should not abort the
101
115
build process, but simply not install the failing extension.
0 commit comments