-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (36 loc) · 1.09 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
35
36
37
38
39
40
41
[tool.poetry]
name = "targe"
version = "0.4.0"
description = "Powerful and flexible policy based authorization library."
authors = [
"Dawid Kraczkowski <[email protected]>"
]
license = "MIT"
readme = "README.md"
exclude = ["examples/*"]
homepage = "https://github.com/kodemore/targe"
repository = "https://github.com/kodemore/targe"
documentation = "https://github.com/kodemore/targe"
keywords = ["authorization", "acl", "rbac", "policy", "auth", "role", "permissions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
# Requirements
[tool.poetry.dependencies]
python = "^3.8"
gid = "^1.0.1"
gaffe = "^0.2.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
pytest = "^7.2.2"
black = "^23.3.0"
isort = "^5.12.0"
pylint = "^2.17.2"