PROJECT_NAME¶
DESCRIPTION
Project structure¶
project_name
├── AUTHORS.rst
├── CHANGELOG.rst
├── LICENSE.txt
├── Makefile
├── README.rst
├── docs
│ ├── Makefile
│ ├── _static
│ ├── authors.rst
│ ├── changelog.rst
│ ├── conf.py
│ ├── index.rst
│ └── license.rst
├── requirements.txt
├── setup.cfg
├── setup.py
├── src
│ └── project_name
│ ├── __init__.py
│ └── project_name.py
└── tests
├── conftest.py
└── test_project_name.py
Note¶
This project has been set up using PyScaffold 3.1 and Cookiecutter 1.6.
For details and usage information on PyScaffold, see https://pyscaffold.org/.
For details and usage information on Cookiecutter, see https://cookiecutter.readthedocs.io/.