-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.7 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rag_fact_checker"
version = "0.1.5"
description = "Fact-checking system using large language models."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Ilir Osmanaj", email = "ilirosmanaj.94@gmail.com"},
{name = "Adam Kovacs", email = "kovacs@krlabs.eu"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
]
requires-python = ">=3.11"
dependencies = [
"easydict==1.13",
"openai>=1.54.4",
"python-dotenv==1.0.1",
]
[project.urls]
Homepage = "https://github.com/KRLabsOrg/RAGFactChecker"
Repository = "https://github.com/KRLabsOrg/RAGFactChecker"
Issues = "https://github.com/KRLabsOrg/RAGFactChecker/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1.0",
"mypy>=1.0",
]
[tool.setuptools.packages.find]
# This tells setuptools to automatically find packages
# Same behavior as find_packages() in setup.py
[tool.setuptools.package-data]
rag_fact_checker = [
"prompt_bank.json",
"default_config.json",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"] # Line too long (handled by formatter)
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true