-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
60 lines (55 loc) · 1.44 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
[tool.poetry]
name = "focus_validator"
version = "1.0.0"
description = "FOCUS spec validator."
authors = []
readme = "README.md"
packages = [{ include = "focus_validator" }]
include = [
{ path = "focus_validator/rules/version_sets/0.5/*" },
{ path = "focus_validator/rules/version_sets/1.0-preview/*" },
{ path = "focus_validator/rules/version_sets/1.0/*" }
]
# TODO: For some reason, this doesn't exclude anything
exclude = [
{ path = "focus_validator/rules/base_rule_definitions/*" }
]
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2"
tabulate = "*"
pyarrow = "*"
pydantic = "^2"
pyyaml = "*"
requests = "*"
pandera = { version = "^0.17.2" }
sqlglot = "^18.7.0"
numpy = { version = "^1.26"}
pytz = "^2023.3.post1"
pandasql = "^0.7.3"
polars = "^0.20.3"
ddt = "^1.7.1"
[tool.poetry.group.dev.dependencies]
black = { extras = ["d"], version = "^23.7.0" }
polyfactory = "^2.7.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
mypy = "^1.4.1"
types-setuptools = "^68.0.0.3"
types-tabulate = "^0.9.0.3"
pandas-stubs = "^2.0.2.230605"
types-pyyaml = "^6.0.12.11"
types-requests = "^2.31.0.2"
pandera = { version = "^0.17.2", extras = ["mypy"] }
isort = "^5.12.0"
flake8 = "^6.1.0"
pre-commit = "^3.3.3"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core", "pyyaml"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
focus-validator = "focus_validator.main:main"