mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
we are targeting 2.6+ for now
Signed-off-by: Markus Gattol <markus.gattol@sunoano.org>
This commit is contained in:
parent
c270e6331a
commit
b870dd74e7
1 changed files with 4 additions and 3 deletions
7
setup.py
7
setup.py
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue