Metadata-Version: 2.1
Name: phylox
Version: 0.0.2
Summary: A package with tools for constructing, manipulating, and analyzing phylogenetic networks.
Author-email: Remie Janssen <remiejanssen92@gmail.com>
Project-URL: Homepage, https://github.com/RemieJanssen/PhyloX
Project-URL: Bug Tracker, https://github.com/RemieJanssen/PhyloX/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: networkx (>=2.6)
Requires-Dist: numpy (>=1.21.6)

# PhyloX

PhyloX is a python package with tools for constructing, manipulating, and analyzing phylogenetic networks.

## Install

Install as pypi package phylox:
```
pip install phylox
```

## Usage

You can load the package methods with `import phylox` in python.

## Development

### Linting

precommit is yet to be configured, for now, simply run black and isort.

### Release

set new version number in master branch
 - CHANGELOG.md

release current version
```
git checkout main
git tag [version number]
git checkout release
git merge master
python -m build
python -m twine upload --repository pypi dist/*
```
set new version number in master branch
 - pyproject.toml
