-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
130 lines (110 loc) · 2.74 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
121
122
123
124
125
126
127
128
129
130
# See https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pydantic-kedro"
description = "Kedro"
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
keywords = ["pydantic", "kedro", "fsspec"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Typing :: Typed",
]
dependencies = [
"pydantic>=1.10.0,<3", # WIP
"pydantic-yaml>=1.3.0",
"ruamel-yaml<0.18", # Current limitation
"kedro>=0.19.3,<0.20",
"kedro-datasets>=2.1.0",
"fsspec",
]
urls = { github = "https://github.com/NowanIlfideme/pydantic-kedro" }
[project.optional-dependencies]
dev = [
"setuptools>=61.0.0",
"setuptools-scm[toml]>=6.2",
"pre-commit==3.7.0",
"black==24.3.0",
"isort==5.13.2",
"ruff==0.4.4",
"mypy==1.9.0",
"pytest==7.4.2",
# required for testing
"pandas>=1.5.3,<2.2.0",
"pyspark>=3.4.1,<3.6.0",
"kedro-datasets[pandas,spark]",
# Stubs
"pandas-stubs",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pymdown-extensions",
"pygments",
]
[project.scripts]
[tool.setuptools]
zip-safe = false
package-dir = { "" = "src" }
packages = ["pydantic_kedro"]
[tool.setuptools.package-data]
[tool.setuptools.dynamic]
version = { attr = "pydantic_kedro.version.__version__" }
[tool.setuptools_scm]
[tool.ruff]
line-length = 105
src = ["src"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
# "UP", # pyupgrade
"D", # pydocstyle
]
ignore = ["D203", "D213"] # conflicting
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.black]
line-length = 105
target-version = ['py39']
[tool.isort]
profile = "black"
skip = [".git"]
[tool.pytest.ini_options]
# Docs: https://docs.pytest.org/en/7.1.x/reference/customize.html#pyproject-toml
minversion = "6.0"
testpaths = ["src/tests"]
[tool.mypy]
# Docs: https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
python_version = "3.9"
namespace_packages = false
warn_unused_configs = true
warn_return_any = false
files = ["src/pydantic_kedro"]
exclude = "src/test"
[[tool.mypy.overrides]]
module = ["pydantic_kedro.*"]
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = [
"setuptools",
"setuptools_scm",
"fsspec.*",
"cloudpickle",
"fusepy",
"ruamel.*",
"kedro_datasets.*",
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["pydantic.v1"]
ignore_missing_imports = true