apple / app-store-server-library-python

MIT License
147 stars 31 forks source link

Please declare machine-readable license metadata #74

Closed Zac-HD closed 4 months ago

Zac-HD commented 4 months ago

👋 Thanks for this package! It'd simplify our compliance processes if you added some license metadata, so that our tools could tell that this package is MIT licensed. Example for how to do that in setup.py:

setup(
    ...,
    license="MIT",
    classifiers=[
        "License :: OSI Approved :: MIT License",
    ],
)