-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.17 KB
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymigrate-compliance"
version = "0.1.0"
description = "A compliance audit migration framework for regulated industries"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "PyMigrate Team", email = "contact@pymigrate.io"}
]
dependencies = [
"pydantic>=2.0",
"cryptography>=41.0",
"networkx>=3.0",
"python-dateutil>=2.8",
"pytz>=2023.3",
"click>=8.1",
"pyyaml>=6.0",
"jsonschema>=4.0",
"graphviz>=0.20",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-json-report>=1.5.0",
"pytest-mock>=3.0",
"black>=23.0",
"ruff>=0.1.0",
"mypy>=1.0",
"freezegun>=1.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
[tool.ruff]
line-length = 88
target-version = "py38"
exclude = [".git", "__pycache__", "build", "dist"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true