-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
100 lines (87 loc) · 2.16 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
[project]
name = "pasteur"
version = "0.3.1"
authors = [
{ name="Kapenekakis Antheas", email="[email protected]" },
]
description = "A system for reproducible and scalable data synthesis."
readme = "README_PYPI.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
# Core
"kedro",
"kedro-datasets",
"mlflow",
"pydantic", # required by mlflow config structure
"pyarrow",
"tqdm",
# Comp. Libs
"numpy",
"pandas",
"scipy",
"scikit-learn",
]
[project.optional-dependencies]
opt = [
"jupyterlab",
"kedro-viz",
"black",
"parquet-tools",
"pip-tools",
]
cls = [
"xgboost"
]
docs = [
"docutils",
"sphinx",
"sphinx-book-theme",
"nbsphinx",
"recommonmark",
"sphinx-autodoc-typehints",
"sphinx_copybutton",
"Jinja2",
"sphinx-autobuild",
]
[project.urls]
"Homepage" = "https://pasteur.dev"
"Bug Tracker" = "https://github.com/pasteur-dev/pasteur/issues"
[project.entry-points."console_scripts"]
pasteur = "pasteur.__main__:main"
[project.entry-points."kedro.hooks"]
pasteur = "pasteur.kedro.hooks:pasteur"
pasteur_mlflow = "pasteur.kedro.hooks:mlflow"
[project.entry-points."kedro.project_commands"]
pasteur = "pasteur.cli:cli"
[project.entry-points."kedro.starters"]
pasteur = "pasteur.kedro.starters:starters"
[build-system]
requires = ["setuptools>=61.0", "wheel", "numpy>=1.15"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["pasteur*"] # package names should match these glob patterns (["*"] by default)
[tool.kedro]
package_name = "project"
project_name = "Pasteur Testing Project"
kedro_init_version = "0.19.4"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = "kedro"
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/pasteur -ra"""
[tool.coverage.report]
fail_under = 0
show_missing = true
exclude_lines = ["pragma: no cover", "raise NotImplementedError"]