An add-on for setuptools to simplify building executables and static libraries
Project description
Distutils/Setuptools provides a fantastic cross platform framework for building python packages, including binary extensions using your platforms standard c/c++ compiler.
Why should it be limited only to use on python pyd extensions however, there’s nothing to stop it being used for compiling anything with said comiler, such as executables and static libraries.
Well it turns out all the functionality is already there, it just isn’t really exposed to the end user very easily. This is easily rectified however:
from setuptools import setup
from ext_targets import build_ext, StaticLib, Executable
setup(
name='binaries!', # This isn't actually used in the built targets
cmdclass={'build_ext': build_ext},
ext_modules=ext_modules = [
StaticLib(
name='saveforlater',
sources=['lib.c', 'required.c'],
include_dirs=['../include']
),
Executable(
name='my_program',
sources=['source.c', 'extra.cpp'],
libraries=['libsaveforlater']
language='c++',
include_dirs=['../include'],
extra_compile_args=['-static'],
extra_link_args=['-static']
)
]
)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file setuptools_bin_targets-1.3.tar.gz.
File metadata
- Download URL: setuptools_bin_targets-1.3.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebdbd0dcef10024a3fabe74845a76f890458a250fe09a656835f3f8de0de0377
|
|
| MD5 |
942c3ce6443694e24c200eb632ba9506
|
|
| BLAKE2b-256 |
15cd55d905a085cd49066a444d33129ff6164fd42bfd59d3f03f03fab231aeab
|