-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.6 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
# main docs of setup tools: https://setuptools.pypa.io/en/latest/userguide/quickstart.html
# pypip tutoral: https://packaging.python.org/en/latest/tutorials/packaging-projects/
# Video Tutorial: https://www.youtube.com/watch?v=v6tALyc4C10
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
include-package-data = true # to include data directories
[project]
name = "qdat_bench"
version = "1.0.0"
authors = [
{ name="Abdullah", email="abdullahamlyossef@gmail.com" },
]
description = "Benchmarking Some of Tajweed Rules to help creating New AI models to assist Muslim to learn reciting the Holy Quran using AI "
readme = "README.md"
dependencies = [
"datasets[audio]<4",
"pyarrow>=20.0.0",
"quran-transcript>=0.1.1",
"huggingface_hub>=0.35.1",
"pydantic>=2.11.9",
"python-dotenv>=1.1.1",
"numpy>=2.2.6",
"levenshtein>=0.27.1",
"scikit-learn>=1.7.2",
]
requires-python = ">=3.10,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# Optional dependencies
[project.optional-dependencies]
test = [
"pytest>=8.4.2",
]
ui = [
"pandas>=2.3.2",
"streamlit>=1.49.1",
]
stats = [
"matplotlib>=3.10.7",
]
muaalem = [
"quran-muaalem>=0.0.3",
"transformers>=4.57.1",
]
[project.urls]
Homepage = "https://github.com/obadx/prepare-quran-dataset"
Issues = "https://github.com/obadx/prepare-quran-dataset/issues"
# # for addint data: https://setuptools.pypa.io/en/latest/userguide/datafiles.html#package-data
# [tool.setuptools.package-data]
# quran_transcript = ["data/*"]