19 lines
519 B
Python
19 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,
|
|
)
|