-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.34 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
[project]
name = "linkture"
dynamic = ["version"]
description = "PARSE and PROCESS BIBLE SCRIPTURE REFERENCES: extract, tag, link, rewrite, translate, BCV-encode and decode"
authors = [
{name = "Eryk J.", email = "[email protected]"}
]
dependencies = [
"setuptools>=59.6.0",
"argparse>=1.4.0",
"regex>=2023.8.8",
"unidecode>=1.3.8",
"pandas==2.2.*",
"pathlib>=1.0.1"
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Religion",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Linguistic"
]
keywords = ["bible", "scriptures", "scripture-references", "scripture-translation", "scripture-parser", "scripture-linker"]
[project.urls]
Homepage = "https://github.com/erykjj/linkture"
Issues = "https://github.com/erykjj/linkture/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/linkture/linkture.py"