-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·64 lines (55 loc) · 1.93 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
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Copyright (c) 2018 Mozilla Corporation
""" Packaging script """
import os
import subprocess
from setuptools import setup
NAME = 'iamvpnlibrary'
VERSION = '0.35.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=('Mozilla-specific user authorization for VPN access\n' +
'This package is built upon commit ' + git_version()),
license='MPL',
keywords='mozilla ldap',
url='https://github.com/mozilla-it/iamvpnlibrary',
long_description=read('README.rst'),
install_requires=['python-ldap', 'netaddr'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
],
)