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

20 lines
519 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,
)