Add djoser to dependencies

This commit is contained in:
aldrin 2021-04-13 11:39:00 +02:00
parent 4ec212f2f0
commit 0cc1c8a350
3 changed files with 28 additions and 6 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
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,
)