forked from awslabs/python-deequ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
120 lines (110 loc) · 2.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[tool.poetry]
name = "pydeequ"
version = "1.0.1"
description = "PyDeequ - Unit Tests for Data"
authors = ["Calvin Wang <calviwan@amazon.com>"]
maintainers = ["Calvin Wang <calviwan@amazon.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://pydeequ.readthedocs.io"
repository = "https://github.com/awslabs/python-deequ"
documentation = "https://pydeequ.readthedocs.io"
keywords = [
"deequ",
"pydeequ",
"data-engineering",
"data-quality",
"data-profiling",
"dataquality",
"dataunittest",
"data-unit-tests",
"data-profilers"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4"
numpy = ">=1.14.1"
pandas = ">=0.23.0"
pyspark = { version = ">=2.4.7, <3.1.1", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.11.1"
coverage = "^5.5"
pytest-runner = "^5.3.0"
black = "^21.5b1"
flake8 = "^3.9.2"
flake8-docstrings = "^1.6.0"
pytest-flake8 = "^1.0.7"
pre-commit = "^2.12.1"
pytest-rerunfailures = "^9.1.1"
twine = "^3.4.1"
safety = "^1.10.3"
[tool.poetry.extras]
pyspark = ["pyspark"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
# https://github.com/psf/black
line-length = 110
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.venv
| htmlcov
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort
# https://github.com/timothycrosley/isort/wiki/isort-Settings
profile = "black"
line_length = 110
indent = ' '
multi_line_output = 3
include_trailing_comma = true
skip_glob = ['__init__.py']
#force_grid_wrap = 0
atomic = true
#lines_after_imports = 2
#lines_between_types = 1
#src_paths=isort,test
# [mypy]
# python_version = 3.8
#warn_return_any = True
#warn_unused_configs = True
#[mypy-pyspark.*]
#ignore_missing_imports = True
# pytest -n 2 --reruns 3 --reruns-delay 5 --dist loadscope --tx 2*popen//python=python
[pytest]
testpaths = "tests"
norecursedirs = ".git .* *.egg* old docs dist build"
cache_dir = "./.pytest_cache"
python_files = "*test_*.py"
looponfailroots = "pydeequ tests"
# addopts = "-n3 --reruns 3 --reruns-delay 5 --dist loadscope"
# rsyncdirs = . mypkg helperpkg
# rsyncignore = .hg