setup.py: file structure
Date: January 27th 2016
Last updated: January 27th 2016
File structure can be variable and files can be included from the root directory and inside package modules. A template for creating the following file structure is here.
Project
├── bin
│ ├── script1.py
│ └── script2.py
|
├── docs
│ ├── history.txt
│ └── notes.txt
|
├── extra_files
│ ├── ef1.txt
│ └── ef2.txt
|
├── CHANGES.txt
├── LICENSE.txt
├── MANIFEST.in
├── README.md
├── setup.py
|
└── module
|
├── module.py
├── __init__.py
|
├── data
│ └── data.db
|
└── test
├── __init__.py
├── test_method1.py
└── test_method2.py