diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2020-06-23 10:42:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-23 10:42:00 +0200 |
| commit | 5777b8570161bcf646c8862ef45b8fd08bb1c54b (patch) | |
| tree | 59945b4a6cb273da140691da680472632bf68b83 /src/runtime | |
| parent | 63a3a57620189e21b507ffc145e006701d02566a (diff) | |
| parent | ab3c6ec4ebf6b02d09db1ccbb651f14ed7d35f66 (diff) | |
Merge pull request #62 from GrammaticalFramework/python-bindings-description
Update descriptions in Python bindings setup.py
Diffstat (limited to 'src/runtime')
| -rw-r--r-- | src/runtime/python/setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/runtime/python/setup.py b/src/runtime/python/setup.py index 19459b411..fdc2fe8c5 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -17,7 +17,13 @@ pgf_module = Extension('pgf', setup (name = 'pgf', version = '1.0', - description = 'A binding to the PGF engine', + description = 'Python bindings to the Grammatical Framework\'s PGF runtime', + long_description="""\ +Grammatical Framework (GF) is a programming language for multilingual grammar applications. +This package provides Python bindings to GF runtime, which allows you to \ +parse and generate text using GF grammars compiled into the PGF format. +""", + url='https://www.grammaticalframework.org/', author='Krasimir Angelov', author_email='kr.angelov@gmail.com', license='BSD', |
