#!/usr/bin/env python from setuptools import setup, find_packages setup( name="etf-portal", version="0.1.0", packages=find_packages(), include_package_data=True, install_requires=[ "click", "psutil", "streamlit", ], entry_points={ "console_scripts": [ "etf-portal=ETF_Portal.cli:main", ], }, python_requires=">=3.8", author="Pascal", description="ETF Portal CLI tool", long_description=open("README.md").read() if open("README.md").read() else "", long_description_content_type="text/markdown", )