-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
32 lines (28 loc) · 984 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "tshet-uinh-encoder"
authors = [
{ name="nk2028 Developers", email="[email protected]" },
]
description = "A Python library for the operating the basic structure of the Tshet-uinh phonological system"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
'Development Status :: 4 - Beta',
"Programming Language :: Python :: 3",
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Topic :: Text Processing :: Linguistic',
'Natural Language :: Chinese (Traditional)',
"Operating System :: OS Independent",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/nk2028/tshet-uinh-encoder-python"
Issues = "https://github.com/nk2028/tshet-uinh-encoder-python/issues"
[tool.setuptools.dynamic]
version = {attr = "TshetUinhEncoder.__version__"}