-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.22 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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "kitops"
version = "1.5.0"
authors = [
{ name="Jacob Fuss", email="jacob@jozu.com" },
]
description = "A package for managing KitOps ModelKits and Kitfiles"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
license = "Apache-2.0"
keywords = ["kitfile", "modelkit", "kitops", "jozu", "jozu.ml"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
[project.urls]
Homepage = "https://github.com/jozu-ai/pykitops"
Issues = "https://github.com/jozu-ai/pykitops/issues"
Repository = "https://github.com/jozu-ai/pykitops"
Documentation = "https://kitops.org/docs/pykitops/reference/"
[tool.poetry.dependencies]
python-dotenv = "^1.2"
pyyaml = "^6.0"
pydantic = "^2.12"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
ruff = "^0.15.10"
types-pyyaml = "^6.0.12.20250915"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["PLR2004"]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pylint
"PL",
# isort
"I",
]