kapt-labs / django-check-seo

Django Check SEO will check the SEO aspects of your site for you, and will provide advice in case of problems. Compatible with Django & Django-CMS!
GNU General Public License v3.0
154 stars 12 forks source link

Add dependancies in setup.cfg #26

Closed corentinbettiol closed 4 years ago

corentinbettiol commented 4 years ago

User currently need to manually install some packages that django-check-seo depends on, or to manually add them to their Pipfile.

But Setup Configuration File syntax include the declaration of dependencies:

[options]
include_package_data = true
packages = find:
install_requires =
    packagename>=version
    otherpackagename

I think the right way to treat dependencies is to let pipenv (or pip) do it for us.