Metadata-Version: 2.0
Name: movie-collection
Version: 0.1.1
Summary: Create dvd collection and calculate runtime
Home-page: UNKNOWN
Author: Juliana Borst
Author-email: j_borst1@pacific.edu
License: UNKNOWN
Keywords: movie library dvd length
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: Natural Language :: English


# movie collection package

---
Creates class object to hold your collection of DVDs
It keeps track of the title, length in minutes, and year
released on DVD

# calculations

getHoursOrMins function allows you to calculate the total amount
of time your movies add up to in either minutes or
hours (decimal form)
Input is either 'minute', 'minutes', 'hour', 'hours'
Not case-sensitive
Minutes are returned in integer, hours are returned in decimal

totalTime function allows you to get the total amount of time in
both hours and minutes
For example, getHourOrMins could return 72 minutes or 1.2 hours
totalTime will return "All movies in my collection add up to 1 hours 
and 12 minutes long"
"""

