from setuptools import setup, find_packages # with open("README.md", "r") as fh: # long_description = fh.read() long_description = "" setup( name="preprocessor", # Replace with your own username version="1.1.0", author="", author_email="", description="preprocessor for PVS", long_description=long_description, long_description_content_type="text/markdown", url="https://gitlab.eox.at/esa/prism/vs/-/tree/master/preprocessor", packages=find_packages(), include_package_data=True, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires='>=3.6', entry_points={ "console_scripts": [ "preprocessor = preprocessor.cli:cli", ], } )