-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·64 lines (55 loc) · 1.79 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
''' Packaging script '''
import os
import subprocess
from setuptools import setup
NAME = 'puppetctl'
VERSION = '1.0.0'
def git_version():
''' Return the git revision as a string '''
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for envvar in ['SYSTEMROOT', 'PATH']:
val = os.environ.get(envvar)
if val is not None:
env[envvar] = val
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout=subprocess.PIPE,
env=env).communicate()[0]
return out
try:
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
git_revision = out.strip().decode('ascii')
except OSError:
git_revision = u"Unknown"
return git_revision
def read(fname):
''' Contents of a single filename '''
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=NAME,
packages=[NAME],
version=VERSION,
author='Greg Cox',
author_email='[email protected]',
description=('Tool for setting time-bound disable and nooperate modes on a puppeted host\n' +
'This package is built upon commit ' + git_version()),
install_requires=[
'setuptools',
],
license='Apache License 2.0',
entry_points={
'console_scripts': ['puppetctl=puppetctl.command_line:main'],
},
keywords='puppet admin',
url='https://github.com/mozilla-it/puppetctl',
long_description=read('README.md'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
],
)