-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
94 lines (84 loc) · 2.26 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
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "flint"
description = "An AI personal assistant for your digital brain"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.10"
authors = [
{ name = "Saba Imran, Debanjum Singh Solanky" },
]
keywords = [
"productivity",
"NLP",
"AI",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"fastapi >= 0.77.1",
"uvicorn >= 0.17.6",
"rich >= 13.3.1",
"schedule == 1.1.0",
"python-multipart >= 0.0.6",
"openai >= 0.27.8",
"gunicorn == 21.2.0",
"requests == 2.31.0",
"pillow == 10.4.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/khoj-ai/flint#readme"
Issues = "https://github.com/khoj-ai/flint/issues"
Discussions = "https://github.com/khoj-ai/flint/discussions"
Releases = "https://github.com/khoj-ai/flint/releases"
[project.scripts]
flint = "flint.main:run"
[project.optional-dependencies]
test = [
"pytest >= 7.1.2",
"freezegun >= 1.2.0",
"factory-boy >= 3.2.1",
"trio >= 0.22.0",
]
dev = [
"flint[test]",
"mypy >= 1.0.1",
"black >= 23.1.0",
"pre-commit >= 3.0.4",
]
[tool.hatch.version]
source = "vcs"
raw-options.local_scheme = "no-local-version" # PEP440 compliant version for PyPi
[tool.hatch.build.targets.sdist]
include = ["src/flint"]
[tool.hatch.build.targets.wheel]
packages = ["src/flint"]
[tool.mypy]
files = "src/flint"
pretty = true
strict_optional = false
install_types = true
ignore_missing_imports = true
non_interactive = true
show_error_codes = true
warn_unused_ignores = false
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"chatquality: Evaluate chatbot capabilities and quality",
]