setup.cfg 664 B

12345678910111213
  1. [metadata]
  2. # This includes the license file(s) in the wheel.
  3. # https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
  4. license_files = LICENSE.txt
  5. [bdist_wheel]
  6. # This flag says to generate wheels that support both Python 2 and Python
  7. # 3. If your code will not run unchanged on both Python 2 and 3, you will
  8. # need to generate separate wheels for each Python version that you
  9. # support. Removing this line (or setting universal to 0) will prevent
  10. # bdist_wheel from trying to make a universal wheel. For more see:
  11. # https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels
  12. universal=1