Skip to content

Commit

Permalink
Publishing 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kolotaev committed Jun 5, 2018
1 parent 3a4dd9c commit 0c51302
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [Author]
Copyright 2018 Egor Kolotaev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
17 changes: 9 additions & 8 deletions README.md
Expand Up @@ -2,6 +2,7 @@

[![Build Status](https://travis-ci.org/kolotaev/vakt.svg?branch=master)](https://travis-ci.org/kolotaev/vakt)
[![codecov.io](https://codecov.io/github/kolotaev/vakt/coverage.svg?branch=master)](https://codecov.io/github/kolotaev/vakt?branch=master)
[![PyPI version](https://badge.fury.io/py/vakt.svg)](https://badge.fury.io/py/vakt)
[![Apache 2.0 licensed](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://raw.githubusercontent.com/kolotaev/vakt/master/LICENSE)

Attribute-based access control (ABAC) SDK for Python.
Expand All @@ -22,8 +23,8 @@ Attribute-based access control (ABAC) SDK for Python.
- [Guard](#guard)
- [JSON](#json)
- [Logging](#logging)
- [Benchmark](#benchmark)
- [Acknowledgements](#acknowledgements)
- [Benchmark](#benchmark)
- [Development](#development)
- [License](#license)

Expand Down Expand Up @@ -294,6 +295,13 @@ Vakt logs can be considered in 2 basic levels:
2. *Info* - informs about incoming inquires and their resolution.


### Acknowledgements

Code ideas of Vakt are based on
[Amazon IAM Policies](https://github.com/awsdocs/iam-user-guide/blob/master/doc_source/access_policies.md) and
[Ladon](https://github.com/ory/ladon) Policies SDK as its reference implementation.


### Benchmark

You can see how much time it takes a single Inquiry to be processed given we have a number of unique Policies in Memory
Expand Down Expand Up @@ -327,13 +335,6 @@ Script arguments:
3. Int - Cache size for RegexChecker (Default: 1024)


### Acknowledgements

Code ideas of Vakt are based on
[Amazon IAM Policies](https://github.com/awsdocs/iam-user-guide/blob/master/doc_source/access_policies.md) and
[Ladon](https://github.com/ory/ladon) Policies SDK as its reference implementation.


### Development

To hack Vakt locally run:
Expand Down
10 changes: 2 additions & 8 deletions setup.py
@@ -1,17 +1,11 @@
from setuptools import setup, find_packages

__version__ = '0.0.1'


with open('README.md') as f:
README = f.read()

__version__ = '1.0.2'

if __name__ == "__main__":
setup(
name='vakt',
description='Python SDK for access policies',
long_description=README,
description='Attribute-based access control (ABAC) SDK for Python',
keywords='ACL RBAC access policy security',
version=__version__,
author='Egor Kolotaev',
Expand Down

0 comments on commit 0c51302

Please sign in to comment.