/pypkg

Primary LanguagePython

YaMath

A comprehensive demo of python package development.

Reading

Tools

Project Description


.
├── .editorconfig
├── MANIFEST.in
├── README.md
├── setup.py
├── tests
│   └── test_add.py
├── tox.ini
└── yamath.py
  • .editorconfig, coding style configuration
  • yamath.py is our module to be distributed
  • setup.py declare the infomation of our package
  • MANIFEST.in tell setup.py to distribute more files
  • tox.ini controls multiple python version and how we test our package
  • any file under tests start with test_ will be found by py.test