diff options
| author | Inari Listenmaa <inari.listenmaa@gmail.com> | 2025-08-03 17:26:26 +0200 |
|---|---|---|
| committer | Inari Listenmaa <inari.listenmaa@gmail.com> | 2025-08-03 17:26:26 +0200 |
| commit | a218903a2da6401b7fa8d7719bfb1673f3f898a2 (patch) | |
| tree | 8671ecfd13041084208ffd8fe5721c7080b2efd0 | |
| parent | f1c1d157b6fe0557f8cd77d50c2947c08fbd3f62 (diff) | |
use setuptools (so it works for 3.12+) + bump version to 1.1
| -rw-r--r-- | src/runtime/python/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/python/setup.py b/src/runtime/python/setup.py index fdc2fe8c5..3a1e6dc5c 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup, Extension +from setuptools import setup, Extension import os includes = os.getenv('EXTRA_INCLUDE_DIRS','').split(':') @@ -16,7 +16,7 @@ pgf_module = Extension('pgf', libraries = ['gu', 'pgf']) setup (name = 'pgf', - version = '1.0', + version = '1.1', description = 'Python bindings to the Grammatical Framework\'s PGF runtime', long_description="""\ Grammatical Framework (GF) is a programming language for multilingual grammar applications. |
