-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (41 loc) · 1 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
[build-system]
requires = ["setuptools>=62.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "usfmtc"
version = "0.2.3"
authors = [{name = "USFM Technical Committee", email = "[email protected]"}]
readme = "python/README.md"
license = {file = "LICENSE.md"}
description = "USFM reference parser"
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing :: Markup"
]
requires-python = ">=3.8"
#dynamic = ["version"]
dependencies = [
"lxml",
"rply",
"regex"
]
[project.optional-dependencies]
git = [
]
[project.urls]
Home-Page = "https://github.com/usfm-bible/tcdocs"
[tool.setuptools.packages.find]
where = ["python/lib"]
[tool.setuptools.package-data]
usfmtc = ["*.rng"]
[tool.setuptools.dynamic]
# version = {attr = "usfmtc.version"}
#[tool.setuptools]
#packages = ["usfmtc"]
[tool.bdist_wheel]
universal = true
[project.scripts]
usfmconv = "usfmtc:main"