This package is a meta-package that provide python libs for projects
and mainly packgenlite
script.
packgenlite
create a Python package template.
pip install git+ssh://[email protected]/krokrob/packgenlite.git
Use packgenlite
to create a new python package:
packgenlite newpkgname
Check that the package has been created:
cd newpkgname
tree
.
├── MANIFEST.in
├── Makefile
├── README.md
├── newpkgname
│ ├── __init__.py
│ └── data
├── notebooks
├── raw_data
├── requirements.txt
├── scripts
│ └── newpkgname-run
├── setup.py
└── tests
└── __init__.py
6 directories, 8 files