-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
14 lines (11 loc) · 768 Bytes
/
setup.py
File metadata and controls
14 lines (11 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'localstack_extension_authress', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
print("Building version", VERSION)
setup(
version = VERSION,
keywords = ['Authorization as a service', 'Security', 'authorization', 'authorization as a service', 'authentication', 'user authentication', 'Authress', 'Authress client', 'access management', 'access management as a service', 'user security', 'localstack', 'localstack extensions', 'verified', 'verified access', 'verified permissions', 'open source policy engine', 'embedded authorization', 'batteries included authorization'],
)