Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 824 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 824 Bytes

packgenlite - Python package builder

This package is a meta-package that provide python libs for projects and mainly packgenlite script.

packgenlite create a Python package template.

Install packgenlite

pip install git+ssh://[email protected]/krokrob/packgenlite.git

Create a newpkgname package

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