Metadata-Version: 2.1
Name: nativecommon
Version: 6
Summary: Common code of projects with native parts
Home-page: https://github.com/combatopera/nativecommon
Author: Andrzej Cichocki
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: Cython (>=0.29.21)

# nativecommon
Common code of projects with native parts

## Install
These are generic installation instructions.

### To use, permanently
The quickest way to get started is to install the current release from PyPI:
```
pip2 install --user nativecommon
```

### To use, temporarily
If you prefer to keep .local clean, install to a virtualenv:
```
python2 -m venv venvname
venvname/bin/pip install nativecommon
. venvname/bin/activate
```

### To develop
First clone the repo using HTTP or SSH:
```
git clone https://github.com/combatopera/nativecommon.git
git clone git@github.com:combatopera/nativecommon.git
```
Now use pyven's pipify to create a setup.py, which pip can then use to install the project editably:
```
python2 -m venv pyvenvenv
pyvenvenv/bin/pip install pyven
pyvenvenv/bin/pipify nativecommon

python2 -m venv venvname
venvname/bin/pip install -e nativecommon
. venvname/bin/activate
```


