-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
514cf57
commit 271e9ce
Showing
2 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,3 +102,6 @@ ENV/ | |
|
||
# IDE | ||
.idea | ||
|
||
#PYPI | ||
.pypirc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,6 @@ | |
from setuptools import setup | ||
|
||
|
||
with open('README.md', 'r') as f: | ||
readme = f.read() | ||
|
||
|
||
setup( | ||
name='djforge_redis_multitokens', | ||
version='0.0.2', | ||
|
@@ -15,13 +11,12 @@ | |
author='Mikaeil Orfanian', | ||
description='Django REST Framework user auth using multiple tokens stored in Redis', | ||
author_email='[email protected]', | ||
long_description=readme, | ||
install_requires=['passlib', 'djangorestframework', 'django'], | ||
include_package_data=True, | ||
url='https://github.com/ToReforge/djforge-redis-multitokens/archive/0.0.2.tar.gz', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Framework :: Django REST Framework', | ||
'Framework :: Django', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
|