newspyconfigure - News: Release of GNU pyconfigure 0.1

 
 
Latest News
Release of GNU pyconfigure 0.2.3 posted by brandon, Wed 20 Apr 2016 05:40:52 PM UTC
Release of GNU pyconfigure 0.2.2 posted by brandon, Mon 07 Apr 2014 09:32:54 PM UTC
Release of GNU pyconfigure 0.2.1 posted by brandon, Fri 23 Aug 2013 01:25:54 PM UTC
Release of pyconfigure 0.2 posted by brandon, Sun 21 Apr 2013 02:47:50 PM UTC
Release of GNU pyconfigure 0.1.1 posted by brandon, Wed 09 Jan 2013 09:56:08 PM UTC

Release of GNU pyconfigure 0.1

Item posted by Brandon Invergo <brandon> on Mon 26 Nov 2012 09:08:44 PM UTC.

I'm happy to announce the first release of GNU pyconfigure.

GNU pyconfigure is a set of template files for Python developers to use to easily implement the standard GNU configure/install process for their packages. The standard GNU process generally consists of two familiar steps:

    $ ./configure --prefix=/usr
    $ make install

By using the templates provided by GNU pyconfigure, the Python developer gains the power and flexibility of the time-tested, language-agnostic GNU installation process, while the user or software packager encounters a familiar and convenient interface.

GNU pyconfigure is designed to work either alongside or in place of the Python `distutils' module's setup.py script. In fact, it even includes a template setup.py.in script which is populated by the configure script.

To learn more and to read the documentation, visit the website at:
http://www.gnu.org/software/pyconfigure

You may download the release from
http://ftp.gnu.org/gnu/pyconfigure/
or from the nearest mirror at
http://ftpmirror.gnu.org/pyconfigure/

Version 0.1 of GNU pyconfigure already provides a very useable set-up, ready to customize, consisting of:

- an Autoconf script, configure.ac: just fill in your project's name and version and run autoconf and you'll have a configure script that is sufficient for basic Python packages
- a robust set of powerful Autoconf macros to extend configure.ac to match your project's needs
- A Makefile.in that provides all of the standard Make targets, surpassing what is offered by setup.py. It also allows you to install to a Virtualenv rather than a system directory.
- Template distutils files: setup.py.in and PKG-INFO.in, both required for distributing packages on the Python Package Index (PyPI)



 

Back to the top

Powered by Savane 3.13-d3ae.
Corresponding source code