Newer
Older
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name="authserv",
version="0.1",
description="Authentication server",
author="Autistici/Inventati",
author_email="info@autistici.org",
url="https://git.autistici.org/ai/authserv",
install_requires=["python-ldap", "PyOpenSSL", "Flask", "python-memcached", "nose"],
setup_requires=[],
zip_safe=False,
packages=find_packages(),
package_data={},
entry_points={
'console_scripts': [
'ai-auth-server = authserv.server:main',