getpelican / cookiecutter-pelican-plugin

CookieCutter template for creating Pelican plugins
14 stars 5 forks source link

"dev_status" should be a list of choices #7

Closed ivanhercaz closed 4 years ago

ivanhercaz commented 4 years ago

Hi! I found this cookicutter template and I already used it to generate the scheme for a plugin I am developing.

https://github.com/getpelican/cookiecutter-pelican-plugin/blob/1295850178e0ea636d2a80a6ed1827cc693dd4c1/cookiecutter.json#L14

However, in the current code of cookiecutter.json the questiondev_status raises me some doubts:

  1. Should it be a list of choices?
  2. I think the example, or the list of choices if you are agree with the first point, should contain: "development", "production/stable".
  3. Why is there a "5" in the dev_status example?
avaris commented 4 years ago

Why is there a "5" in the dev_status example?

https://pypi.org/classifiers/

justinmayer commented 4 years ago

Enumerated list of choices probably makes the most sense, so I made that change.

ivanhercaz commented 4 years ago

@avaris oh, thank you! I didn't think about them.

@justinmayer, really nice!