-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "truth"
version = "0.1.0"
description = "An open-source library to solve oracle problems using LLMs, Brave Search, and UMA"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["llm", "oracle", "verification", "brave search", "uma"]
authors = [
{ name = "Murat", email = "[email protected]" },
{ name = "Efe", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"mistralai",
"requests",
"python-dotenv",
"discord.py",
"loguru",
"wikipedia",
"youtube_transcript_api",
"beautifulsoup4",
"streamlit",
]
[project.urls]
Homepage = "https://github.com/yourusername/truth"
Repository = "https://github.com/yourusername/truth.git"
"Bug Tracker" = "https://github.com/yourusername/truth/issues"
[tool.hatch.build.targets.wheel]
packages = ["truth"]