Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from chessbr/release-0.1.1
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
chessbr committed Oct 29, 2017
2 parents b6a66d4 + 3ed0822 commit b7e7f15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions rest_jwt_permission/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.1"
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[metadata]
description-file = README.md

[tool:pytest]
django_find_project = false
norecursedirs = .git venv
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,26 @@
from setuptools import setup, find_packages

try:
long_description = open("README.rst").read()
long_description = open("README.md").read()
except IOError:
long_description = ""

setup(
name="rest-jwt-permission",
version="0.1.0",
version="0.1.1",
description="Django Rest Framework JWT Permissions",
license="MIT",
author="Christian Hess",
author_email="christianhess.rlz@gmail.com",
packages=find_packages(),
install_requires=[],
long_description=long_description,
url="https://github.com/chessbr/rest-jwt-permission",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers"
]
)

0 comments on commit b7e7f15

Please sign in to comment.