-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (91 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
99 lines (91 loc) · 2.32 KB
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
[build-system]
requires = ["uv_build>=0.6.13"]
build-backend = "uv_build"
[project]
name = "getml-io"
version = "0.2.0"
description = "Library for serializing data and information from getML projects, pipelines, containers, dataframes, data-models and related components"
readme = "README.md"
authors = [
{ name = "Code17 GmbH", email = "hello@code17.io" },
{ name = "getML", email = "hello@getml.com" },
]
maintainers = [
{ name = "Code17 GmbH", email = "hello@code17.io" },
{ name = "getML", email = "hello@getml.com" },
]
license = { text = "Proprietary" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Private :: Do Not Upload",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["getml", "serialization", "machine-learning"]
requires-python = ">=3.10"
dependencies = [
"getml==1.5.1",
"typer~=0.15.4",
"pydantic~=2.11.4",
"pyarrow~=19.0.1",
"platformdirs~=4.3.8",
"duckdb~=1.3.2",
]
[project.urls]
"Homepage" = "https://github.com/getml/getml-io"
"Bug Tracker" = "https://github.com/getml/getml-io/issues"
"getML" = "https://getml.com"
"Code17 GmbH" = "https://www.code17.io/"
[tool.pyright]
venvPath = "."
venv = ".venv"
reportMissingTypeStubs = false
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"CPY001",
"D100",
"D101",
"D104",
"D203",
"D213",
"TC001",
"TC002",
"TC003",
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = [
"D102",
"D103",
"D107",
"S101",
"S311",
"INP001",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: mark for unit tests",
"integration: mark for integration tests",
]
[dependency-groups]
development = [
"ruff~=0.11.4",
"basedpyright~=1.28.4",
"pytest~=8.3.5",
"pytest-cov~=6.1.1",
"pytest-mock~=3.14.0",
"filelock~=3.18.0",
]