This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-idp-ltpa/setup.py

57 lines
1.7 KiB
Python
Executable File

#!/usr/bin/python
# 2014 Copyright Entrou'vert
from setuptools import setup, find_packages
import os
def get_version():
import glob
import re
import os
version = None
for d in glob.glob('*'):
if not os.path.isdir(d):
continue
module_file = os.path.join(d, '__init__.py')
if not os.path.exists(module_file):
continue
for v in re.findall("""__version__ *= *['"](.*)['"]""",
open(module_file).read()):
assert version is None
version = v
if version:
break
assert version is not None
if os.path.exists('.git'):
import subprocess
p = subprocess.Popen(['git','describe','--dirty','--match=v*'],
stdout=subprocess.PIPE)
result = p.communicate()[0]
assert p.returncode == 0, 'git returned non-zero'
new_version = result.split()[0][1:]
assert new_version.split('-')[0] == version, '__version__ must match the last git annotated tag'
version = new_version.replace('-', '.')
return version
setup(name='authentic2-idp-ltpa',
version=get_version(),
license='AGPLv3',
description='Authentic2 IdP LTPA',
author="Entr'ouvert",
author_email="info@entrouvert.com",
packages=find_packages(os.path.dirname(__file__) or '.'),
install_requires=[
'pyDes',
'authentic2',
],
entry_points={
'authentic2.plugin': [
'authentic2-idp-ltpa = authentic2_idp_ltpa:Plugin',
],
'console_scripts': [
'ltpa-token=authentic2_idp_ltpa.utils:main',
],
},
)