FernLab / cookiecutter-py-package

Cookiecutter template for Python packages. Fork from https://github.com/audreyfeldroy/cookiecutter-pypackage.git
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Broken license classifier in pyproject.toml #10

Closed danschef closed 1 month ago

danschef commented 1 month ago

I choose Apache 2.0 as license for the package to be created. However, the resulting pyproject.toml contains an out-commented license classifier referring to EUPL:

license = {text = "Apache-2.0"}
classifiers = [
    "Development Status :: 2 - Pre-Alpha",
    "Intended Audience :: Science/Research",
    "Topic :: Scientific/Engineering",
    # "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
    "Natural Language :: English",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12"
]

There should be the correct Apache classifier.

DaRa42 commented 1 month ago

covered by #12