Skip to content

Commit

Permalink
0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
oktaal committed Apr 3, 2024
1 parent 3534b6d commit 70b81f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,15 @@ See: https://packaging.python.org/tutorials/packaging-projects/#generating-distr
Make sure `setuptools` and `wheel` are installed. Then from the virtualenv:

```bash
python setup.py sdist bdist_wheel
pip install build
python -m build
twine upload dist/*
```

## Requirements

* [Alpino parser](http://www.let.rug.nl/vannoord/alp/Alpino) running as a server: `Alpino batch_command=alpino_server -notk server_port=7001`
* Python 3.7 or higher
* Python 3.8 or higher
* [libfolia-dev](https://packages.ubuntu.com/bionic/libfolia-dev)
* [libxml2-dev](https://packages.ubuntu.com/bionic/libxml2-dev)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setuptools.setup(name='corpus2alpino',
version='0.3.10',
version='0.3.11',
description='Converts FoLiA and TEI files to Alpino XML files',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -23,7 +23,7 @@
],
install_requires=['argparse', 'chamd>=0.5.8', 'folia',
'spacy', 'tei-reader', 'tqdm'],
python_requires='>=3.7',
python_requires='>=3.8',
zip_safe=True,
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 70b81f6

Please sign in to comment.