summarylogtreecommitdiffstats
path: root/pyproject.toml
blob: 4cc73ee9dea44a60dd4104869d8e7832c951483d (plain)
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "hunspell"
version = "0.5.5"
description = "Module for the Hunspell spellchecker engine"
long_description = "file: README.md"
author = "BenoƮt Latinier"
author_email = "benoit@latinier.fr"
url = "http://github.com/blatinier/pyhunspell"
license = { text = "LGPLv3" }

[project.urls]
Homepage = "http://github.com/blatinier/pyhunspell"

[tool.setuptools]
ext_modules = [
    {
        name = "hunspell",
        sources = ["hunspell.cpp"],
        language = "c++",
        define_macros = [("_LINUX", null)],
        libraries = ["hunspell"],
        include_dirs = ["/usr/include/hunspell"],
        extra_compile_args = ["-Wall"]
    }
]