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.
mandaye-cam/setup.py

46 lines
1.2 KiB
Python

#! /usr/bin/env python
'''
Setup script for CAM RP
'''
import cam
from setuptools import setup, find_packages
from sys import version
install_requires=[
'gunicorn>=0.13',
'mandaye>=0.4',
'pycrypto>=2.0',
]
def get_version():
if os.path.exists('VERSION'):
version_file = open('VERSION', 'r')
version = version_file.read()
version_file.close()
return version
if os.path.exists('.git'):
p = subprocess.Popen(['git','describe','--long'], stdout=subprocess.PIPE)
result = p.communicate()[0]
return result.split()[0].replace('-','.')
import cam
return cam.VERSION
setup(name="mandaye-cam",
version=get_version(),
license="AGPLv3 or later",
description="CAM is a Mandaye project, modular reverse proxy to authenticate",
url="http://dev.entrouvert.org/projects/reverse-proxy/",
author="Entr'ouvert",
author_email="info@entrouvert.org",
maintainer="Jerome Schneider",
maintainer_email="jschneider@entrouvert.com",
scripts=['cam_mandaye_manager', 'cam_mandaye_server'],
packages=find_packages(),
include_package_data=True,
install_requires=install_requires
)