Rename description to readme so github displays it by default.

main
Jennifer Taylor 2 years ago
parent 7144c399bf
commit f57fbe21a8
  1. 0
      arcadeutils/README.md
  2. 4
      setup.py

@ -2,7 +2,7 @@ import os
from setuptools import setup # type: ignore
with open(os.path.join("arcadeutils", "DESCRIPTION.md"), "r", encoding="utf-8") as fh:
with open(os.path.join("arcadeutils", "README.md"), "r", encoding="utf-8") as fh:
long_description = fh.read()
@ -16,7 +16,7 @@ setup(
author_email='dragonminded@dragonminded.com',
license='Public Domain',
url='https://github.com/DragonMinded/arcadeutils',
package_data={"arcadeutils": ["py.typed", "DESCRIPTION.md"]},
package_data={"arcadeutils": ["py.typed", "README.md"]},
packages=[
'arcadeutils',
],

Loading…
Cancel
Save