16 lines
293 B
Python
16 lines
293 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="checkMetadata",
|
|
version="0.0.1",
|
|
packages=["checkMetadata"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"checkMetadata = checkMetadata.__main__:main"
|
|
]
|
|
},
|
|
install_requires=[
|
|
'tqdm>=4.62.3'
|
|
]
|
|
)
|