Metadata-Version: 2.1
Name: natlinkcore
Version: 5.2.1
Summary: Python portion of Natlink, a compatibility module for Dragon Naturally Speaking
Author-email: "Quintijn Hoogenboom (maintainer)" <q.hoogenboom@antenna.nl>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: wxPython==4.1.1
Requires-Dist: pyenvutils
Requires-Dist: pydebugstring
Requires-Dist: dtactions>=1.5.0
Project-URL: Home, https://github.com/dictation-toolbox/natlink/


# Natlinkcore 

## More Information
 Please refer to the README file in the project repository [https://github.com/dictation-toolbox/natlink](https://github.com/dictation-toolbox/natlink) for more information about natlink.

## Installing from PyPi
You can install from [The Python Package Index (PyPI)](https://pypi.org/) with 

pip install natlinkcore

## Building the Python Package Locally

The package is built with [Flit](https://flit.pypa.io/).  The package will be produced in
dist/nalinkcore-x.y.tar.gz.  To install it `pip install dist/natlinkcore-x.y.tar.gz` replacing x.y with the version numbers.

To build the package:

`flit build --format sdist`

To publish the package to [The Python Package Index (PyPI)](https://pypi.org/)

`flit publish --format sdist`


You can use flit to install the package locally into site-packages using symbolic links, so you can test changes without reinstalling:

`flit install --symlink`


## Publishing checklist
Before you bump the version number in __init__.py and publish:
- Check the pyroject.toml file for package dependancies.  Do you need a specfic or newer version of
a dependancy such as dtactions?  Then add or update the version # requirement in dtactions.  





