Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Use pyproject.toml as much as possible" #33

Merged
merged 1 commit into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 2 additions & 36 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,5 @@
[build-system]
requires = ["setuptools>=60", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "kytea"
description = "A text analysis toolkit KyTea Python wrapper"
authors = [
{name = "Aki Ariga", email = "[email protected]"}
]
maintainers = [
{name ="Aki Ariga", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing :: Linguistic",
]
keywords = [
"KyTea",
"NLP",
"Japanese morphological analyzer",
]
requires-python = ">=3.8"
dynamic = ["version"]

[project.urls]
"Homepage" = "https://github.com/chezou/Mykytea-python"
"Bug Reports" = "https://github.com/chezou/Mykytea-python/issues"
"Funding" = "https://github.com/sponsors/chezou"

requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
# pyproject.toml
[tool.setuptools_scm]
write_to = "lib/kytea/_version.py"
22 changes: 22 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[metadata]
name = kytea
description = A text analysis toolkit KyTea binding
long_description = file: README.metadata
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/chezou/Mykytea-python
author = Aki Ariga
author_email = [email protected]
license = MIT license
license_file = LICENSE
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: MIT License
Topic :: Text Processing :: Linguistic
project_urls =
Source = https://github.com/chezou/Mykytea-python
Tracker = https://github.com/chezou/Mykytea-python/issues
keywords = KyTea, NLP, Japanese morphological analyzer
Loading