1. Learn
  2. /
  3. Courses
  4. /
  5. Software Engineering Principles in Python

Exercise

Listing requirements in setup.py

We created a setup.py file earlier, but we forgot to list our dependency on matplotlib in the install_requires argument. In this exercise you will practice listing your version specific dependencies by correcting the setup.py you previously wrote for your text_analyzer package.

Instructions

100 XP
  • import the needed function, setup, from the setuptools package.
  • List yourself as the author.
  • Specify your install_requires to require matplotlib version 3.0.0 or above.