Metadata-Version: 2.1
Name: SConsider
Version: 0.3.3
Summary: scons build system extension
Home-page: https://redmine.coast-project.org/projects/sconsider
Author: Marcel Huber
Author-email: marcel.huber@hsr.ch
License: BSD
Keywords: sconsider,scons,build
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX :: SunOS/Solaris
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Build Tools
Requires-Dist: scons (<=2.3.0,>=1.3)
Requires-Dist: pyaml
Requires-Dist: pyopenssl
Requires-Dist: lepl

SConsider
=========

SCons extension to provide a recursive target detection and dependency
handling mechanism.

Build a development version
---------------------------

Given the fact that we use git as VCS, we can not use the tag_svn_revision
feature of egg_info. Therefor we make use of the gitegginfo module.

The following command makes use of it and creates the necessary egg-info
directory using the current commit hash appended:

    `python setup.py gitegginfo --tag-git-desc --tag-build .dev develop`

To uninstall a previously installed development version you need to use the following command:

    `python setup.py develop --uninstall`

Run tests
---------

Test can either be run the conventional way using the default test framework:

    `python setup.py test`

or by using nose which is a build dependency of the module calling:

    `python setup.py nosetests --with-xunit --where tests/`

The latter is required if you need to get test results in junit xml style to
be analyzed by jenkins for example.

Create a source/wheel package
-----------------------------

For a short packaging guide check this page: http://python-packaging-user-guide.readthedocs.org/en/latest/tutorial.html
For a short tutorial on wheels check this page: http://wheel.readthedocs.org/en/latest/

    `python setup.py bdist_wheel`

To combine source distribution, wheel creation and uploading to PYPI you could use the following command:

    `python setup.py sdist bdist_wheel upload`

Overview of available commands
------------------------------

To get an overview of available commands use:

    `python setup.py --help-commands`

Help regarding a specific command can be retrieved using:

    `python setup.py <command> --help`





