-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.37 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
# 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 = "prepare-quran-dataset"
version = "1.0.0"
authors = [
{ name="Abdullah Aml", email="[email protected]" },
]
description = "Downloading and Processing Quran Recitaion of the Holy Quran"
readme = "README.md"
dependencies = [
"pypdl==1.4.4",
"tqdm",
"pydantic==2.10.2",
"datasets==3.1.0",
"mutagen==1.47.0",
"quran-transcript @ git+https://github.com/obadx/quran-transcript.git",
"beautifulsoup4==4.12.3",
"filetype==1.2.0",
"ruamel.yaml==0.18.6", # It has duplicate key validation in a dict structure
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[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/*"]