-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.59 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
# 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"
[project]
license = "MIT"
name = "quran-transcript"
version = "0.5.2"
authors = [
{ name="Abdullah", email="abdullahamlyossef@gmail.com" },
]
description = "Quran Phonetic Script with addional quarnic utils"
readme = "README.md"
dependencies = [
"levenshtein>=0.27.1",
"pydantic>=2.12.5",
"xmltodict",
'typing_extensions>=4.0.0; python_version < "3.11"',
"numpy>=2.2.6",
"fuzzysearch>=0.8.1",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
# Optional dependencies
[project.optional-dependencies]
test = [
"pytest",
]
profile = [
"pyinstrument>=5.1.2",
]
[project.urls]
Homepage = "https://github.com/obadx/quran-transcript"
Issues = "https://github.com/obadx/quran-transcript/issues"
[project.scripts]
mattr-docs = "quran_transcript.phonetics.generate_moshaf_docs:main"
ph-ndx = "quran_transcript.phonetics.search:create_phonemes_index"
# for addint data: https://setuptools.pypa.io/en/latest/userguide/datafiles.html#package-data
[tool.setuptools.package-data]
quran_transcript = ["quran-script/*"]