we are targeting 2.6+ for now

Signed-off-by: Markus Gattol <markus.gattol@sunoano.org>
This commit is contained in:
Markus Gattol 2011-11-09 11:57:51 +00:00
parent c270e6331a
commit b870dd74e7

View file

@ -15,13 +15,14 @@ from salt import __version__
NAME = 'salt'
VER = __version__
DESC = 'Portable, distrubuted, remote execution and configuration management system'
DESC = 'Portable, distributed, remote execution and configuration management system'
mod_path = os.path.join(get_python_lib(), 'salt/modules')
doc_path = os.path.join(PREFIX, 'share/doc', NAME + '-' + VER)
example_path = os.path.join(doc_path, 'examples')
template_path = os.path.join(example_path, 'templates')
if os.environ.has_key('SYSCONFDIR'):
if 'SYSCONFDIR' in os.environ:
etc_path = os.environ['SYSCONFDIR']
else:
etc_path = os.path.join(os.path.dirname(PREFIX), 'etc')
@ -43,7 +44,7 @@ setup(
classifiers = [
'Programming Language :: Python',
'Programming Language :: Cython',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',