This repository has been archived on 2022-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
userausfall/setup.py
aldrin c4e547a30b fix(deploy): Disable dependencies
Package must not depend on non-existing deps (Debian Buster).
2021-05-12 09:19:17 +02:00

20 lines
523 B
Python

from setuptools import setup, find_packages
from userausfall import __version__
setup(
name="userausfall",
version=__version__,
description="account management for systemausfall.org",
url="https://git.systemausfall.org/systemausfall.org/userausfall",
author="Robert Waltemath",
author_email="rw@roko.li",
packages=find_packages(),
install_requires=(
"django>=2.2<3.0",
# "djangorestframework>=3.12<4.0",
# "djoser>=2.1<3.0",
),
include_package_data=True,
)