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

41 lines
951 B
Python

#! /usr/bin/env python
'''
Setup script for Mandaye
'''
import mandaye
from setuptools import setup, find_packages
from sys import version
install_requires=[
'alembic>=0.4',
'beaker>=1.6',
'mako>=0.3',
'poster>=0.8',
'sqlalchemy>=0.6',
'lxml>=2.0',
'xtraceback>=0.3',
'static',
]
if version < '2.7':
install_requires.append('importlib')
setup(name="mandaye",
version=mandaye.VERSION,
license="AGPLv3 or later",
description="Mandaye, 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=['scripts/mandaye'],
include_package_data = True,
packages=find_packages(),
install_requires=install_requires
)