check metadata as package

This commit is contained in:
2022-08-25 16:21:50 +02:00
parent d8cf752428
commit 381ce3027d
5 changed files with 20 additions and 185 deletions

12
check_metadata/setup.py Normal file
View File

@ -0,0 +1,12 @@
from setuptools import setup
setup(
name="checkMetadata",
version="0.0.1",
packages=["checkMetadata"],
entry_points={
"console_scripts": [
"checkMetadata = checkMetadata.__main__:main"
]
},
)