-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 893 Bytes
/
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
[tool.poetry]
name = "turbid"
version = "0.1.1"
description = "Transparent obfuscation of numeric IDs"
authors = ["Pedro Werneck <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
ff3 = "^1.0.2"
sqlalchemy = { version = ">=1.4.0,<3.0.0", optional = true }
[tool.poetry.extras]
sqlalchemy = ["sqlalchemy"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
black = "^24.4.2"
isort = "^5.13.2"
ruff = "^0.5.5"
hypothesis = "^6.108.5"
faker = "^26.0.0"
pytest-profiling = "^1.7.0"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = "True"
line_length = 99
[tool.black]
line-length = 99
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = ["--strict-markers", "-vv"]
console_output_style = "progress"