ensure license is added to distributions (#2)

This commit is contained in:
Nicholas Bollweg
2024-09-24 09:57:01 -04:00
committed by GitHub
parent d6d3c88ee8
commit 028df18dbc
2 changed files with 3 additions and 1 deletions

1
MANIFEST.in Normal file
View File

@@ -0,0 +1 @@
include LICENSE

View File

@@ -2,7 +2,7 @@
from setuptools import setup
from icnsutil import __doc__, __version__
with open('README.md') as fp:
with open('README.md', encoding='utf-8') as fp:
longdesc = fp.read()
setup(
@@ -52,4 +52,5 @@ setup(
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
include_package_data=True
)