Last updated:
0 purchases
plottingtools 0.0.1
Python Plotting Tools
Contains various plotting functions.
Installation
To install Python Plotting Tools, run this command in your terminal:
$ pip install -U plotting_tools
This is the preferred method to install Python Plotting Tools, as it will always install the most recent stable release.
If you don't have pip installed, these installation instructions can guide
you through the process.
Quick Start
>>> from plotting_tools import Example
>>> a = Example()
>>> a.get_value()
10
Citing
If you use our work in an academic setting, please cite our paper:
Development
See CONTRIBUTING.md for information related to developing the code.
Suggested Git Branch Strategy
master is for the most up-to-date development, very rarely should you directly commit to this branch. Your day-to-day work should exist on branches separate from master. It is recommended to commit to development branches and make pull requests to master.4. It is recommended to use "Squash and Merge" commits when committing PR's. It makes each set of changes to master
atomic and as a side effect naturally encourages small well defined PR's.
Additional Optional Setup Steps:
Create an initial release to test.PyPI and PyPI.
Follow This PyPA tutorial, starting from the "Generating distribution archives" section.
Create a blank github repository (without a README or .gitignore) and push the code to it.
Delete these setup instructions from README.md when you are finished with them.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.