-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
60 lines (48 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
[project]
name = "kedro-graphql"
authors = [
{name = "opensean"}
]
description = "A kedro plugin for serving any kedro project as a GraphQL api"
requires-python = ">=3.10, <3.12"
keywords = [
"pipelines",
"machine learning",
"data pipelines",
"data science",
"data engineering",
]
license = {text = "Apache Software License (Apache 2.0)"}
classifiers = [
"Programming Language :: Python :: 3.10",
]
dynamic = ["version", "readme", "dependencies"]
[project.scripts]
kedro-graphql = "kedro_graphql.__main__:main"
[project.entry-points."kedro.project_commands"]
kedro-graphql = "kedro_graphql.commands:commands"
[project.urls]
Homepage = "https://github.com/opensean/kedro-graphql"
Source = "https://github.com/opensean/kedro-graphql"
[project.optional-dependencies]
TEST = ["minio~=7.1.15", "s3fs~=2023.5.0", "pandas~=2.2.0"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
version = {attr = "kedro_graphql.__version__"}
dependencies = {file = "src/requirements.txt"}
[tool.kedro]
package_name = "kedro_graphql"
project_name = "kedro-graphql"
kedro_init_version = "0.19.6"
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/kedro_graphql -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]
[tool.kedro_telemetry]
project_id = "a359b3866d7b42889afff83354405d28"