Skip to content

Commit

Permalink
Released version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leeqvip committed Mar 1, 2019
1 parent 8695a52 commit 22a5bd5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,11 +4,11 @@ PyCasbin
[![Build Status](https://www.travis-ci.org/casbin/pycasbin.svg?branch=master)](https://www.travis-ci.org/casbin/pycasbin)
[![Coverage Status](https://coveralls.io/repos/github/casbin/pycasbin/badge.svg)](https://coveralls.io/github/casbin/pycasbin)
[![Version](https://img.shields.io/pypi/v/casbin.svg)](https://pypi.org/project/casbin/)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/casbin.svg)](https://pypi.org/project/casbin/)
[![Pyversions](https://img.shields.io/pypi/pyversions/casbin.svg)](https://pypi.org/project/casbin/)
[![Download](https://img.shields.io/pypi/dm/casbin.svg)](https://pypi.org/project/casbin/)
[![License](https://img.shields.io/pypi/l/casbin.svg)](https://pypi.org/project/casbin/)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/casbin/lobby)
[![Patreon](https://img.shields.io/badge/patreon-donate-yellow.svg)](http://www.patreon.com/yangluo)

**News**: still worry about how to write the correct Casbin policy? ``Casbin online editor`` is coming to help! Try it at: http://casbin.org/editor/

Expand Down
13 changes: 10 additions & 3 deletions setup.py
@@ -1,11 +1,13 @@
import setuptools

with open("README.md", "r") as fh:
desc_file = "README.md"

with open(desc_file, "r") as fh:
long_description = fh.read()

setuptools.setup(
name="casbin",
version="0.1.1",
version="0.2",
author="TechLee",
author_email="techlee@qq.com",
description="An authorization library that supports access control models like ACL, RBAC, ABAC in Python",
Expand All @@ -15,11 +17,16 @@
keywords=["casbin", "rbac", "access control", "abac", "acl", "permission"],
packages=setuptools.find_packages(),
install_requires=['simpleeval>=0.9.8'],
python_requires=">=3.6",
python_requires=">=3.3",
license="Apache 2.0",
classifiers=[
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
data_files=[desc_file],
)

0 comments on commit 22a5bd5

Please sign in to comment.