Add djoser to dependencies
This commit is contained in:
parent
4ec212f2f0
commit
0cc1c8a350
3 changed files with 28 additions and 6 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
@ -1,9 +1,3 @@
|
||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
__pycache__/
|
|
||||||
/db.sqlite3
|
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env.local
|
.env.local
|
||||||
.env.*.local
|
.env.*.local
|
||||||
|
@ -22,3 +16,10 @@ pnpm-debug.log*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
|
/dist
|
||||||
|
__pycache__/
|
||||||
|
/db.sqlite3
|
||||||
|
/venv/
|
||||||
|
|
19
setup.py
Normal file
19
setup.py
Normal 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,
|
||||||
|
)
|
|
@ -1 +1,3 @@
|
||||||
|
__version__ = "0.0.1"
|
||||||
|
|
||||||
default_app_config = 'userausfall.apps.UserausfallConfig'
|
default_app_config = 'userausfall.apps.UserausfallConfig'
|
||||||
|
|
Reference in a new issue