Skip to content
Open
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
20 changes: 19 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
[build-system]
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3", "wheel"]

[project]
name = "wordninja"
description = "Probabilistically split concatenated words using NLP based on English Wikipedia uni-gram frequencies."
readme = "README.md"
license = {text="MIT"}
authors = [{name = "Derek Anderson", email = "public@kered.org"}]
dynamic = ["version"]
urls = {Homepage = "https://github.com/keredson/wordninja"}

[tool.setuptools]
py-modules = ["wordninja"]
packages = ["wordninja"]
include-package-data = true
package-dir = {wordninja = "wordninja"}

[tool.setuptools.package-data]
wordninja = ["wordninja_words.txt.gz"]

[tool.setuptools_scm]
16 changes: 0 additions & 16 deletions setup.cfg

This file was deleted.