-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "Flask-Casbin"
version = "0.3.1"
description = "Flask Casbin Integration"
authors = ["Reimund Klain <reimund.klain@condevtec.de>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/daymien/Flask-Casbin"
homepage = "https://github.com/daymien/Flask-Casbin"
keywords = ["flask", "casbin", "acl", "rbac", "abac", "auth", "authz", "authorization", "access control", "permission"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
flask = "^1.1"
casbin = "^1.1.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"