-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.44 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "sftguard"
version = "0.1.0"
description = "Local-first correctness and regression gates for supervised fine-tuning pipelines"
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [{ name = "Muhammad Labeeb Aryan" }]
keywords = ["fine-tuning", "llm", "regression-testing", "sft"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/Labeeb2339/sftguard"
Documentation = "https://github.com/Labeeb2339/sftguard#readme"
Issues = "https://github.com/Labeeb2339/sftguard/issues"
Source = "https://github.com/Labeeb2339/sftguard"
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"pytest>=8,<9",
"ruff>=0.9,<1",
]
[project.scripts]
sftguard = "sftguard.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests/python"]
addopts = "-q --basetemp=.pytest-tmp-basetemp"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]