-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
55 lines (49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "fastbin"
version = "1.0.0"
description = "Performance orientated improvements to pycasbin"
authors = ["Cameron Hurst <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/wakemaster39/fastbin"
repository = "https://github.com/wakemaster39/fastbin"
keywords = ["casbin", "authorization"]
[tool.poetry.dependencies]
python = "^3.6.2"
casbin = "^1.4.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
pytest-cov = "^2.8"
flake8 = "^3.8"
flake8-bugbear = "^20.1"
isort = "^5.3"
pre-commit = "^2.7"
mypy = "^0.782.0"
black = { version = "^21.7b0", allow-prereleases = true}
coverage = {version = "^5.0b1", allow-prereleases = true}
flake8-isort = "^4.0.0"
eradicate = "^1.0"
#gitlint = "^0.12.0"
[tool.isort]
profile="black"
src_paths="src"
line_length=120
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.pytest_cache
| \.idea
| \.vscode
| \.venv
| build
| dist
)/
'''
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"