Skeleton for Python Projects with Travis-CI + Coveralls.io
.
├── LICENSE Declares license terms for your project
├── README.md This file!
├── setup.py Setup script of setuptools
├── src
│ └── yourpackage
│ ├── __init__.py Defines which class/fucntion should be imported
│ └── yourmodule.py Example for your implimentation
└── tests
├── __init__.py Empty file (need to make 'tests' package)
└── test_yourmodule.py Example for unit test code
- Sign into https://travis-ci.org/
- Check on your repository
- Sign into https://coveralls.io/
- Check on your repository