Skip to content

profjsb/PyAdder

Repository files navigation

PyAdder

Python package

DOI

codecov

PyPi version

PyPI pyversions

GitHub latest commit

Show off the structure of a Python codebase.

> tree PyAdder/ -a -T PyAdder -C --noreport -I ".git|*.pyc|.cache|.pytest_cache|*~|.DS_Store"
PyAdder/
├── .coveragerc
├── .github
│   └── workflows
│       └── test.yml
├── .gitignore
├── .travis
│   └── run.sh
├── .travis.yml
├── CHANGES.txt
├── Dockerfile
├── LICENSE.txt
├── MANIFEST.in
├── README.md
├── adder
│   ├── __init__.py
│   ├── __pycache__
│   └── tests
│       ├── __init__.py
│       ├── __pycache__
│       └── test_one_number.py
├── requirements.txt
├── setup.cfg
└── setup.py