|
|
|
@ -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', |
|
|
|
|
], |
|
|
|
|