From f3a2fa860b17b9dec7d02a7e657a0acd5a580cdb Mon Sep 17 00:00:00 2001 From: andreihar <95883512+andreihar@users.noreply.github.com> Date: Sun, 28 Apr 2024 17:57:39 -0700 Subject: [PATCH] Added pypi publishing files --- pyproject.toml | 2 ++ setup.cfg | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 pyproject.toml create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c953815 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["setuptools", "wheel"] \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..989620a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,26 @@ +[metadata] +name = taibun +version = 1.1.0 +author = Andrei Harbachov +author_email = andrei.harbachov@gmail.com +description = Taiwanese Hokkien Transliterator and Tokeniser +long_description = file: README.md +long_description_content_type = text/markdown +url = https://github.com/andreihar/taibun +license = MIT +classifiers = + Topic :: Text Processing :: Linguistic + Development Status :: 5 - Production/Stable + Intended Audience :: Developers + Programming Language :: Python :: 3 + Operating System :: Unix + Operating System :: MacOS :: MacOS X + Operating System :: Microsoft :: Windows +keywords = python, taiwan, taiwanese, taigi, hokkien, romanization, transliteration, transliterator, tokenization, tokenizer + +[options] +python_requires = >=3.8 +packages = find: + +[options.package_data] +taibun = data/*.json \ No newline at end of file