28 lines
684 B
Python
28 lines
684 B
Python
#!/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=[
|
|
"streamlit",
|
|
"pandas",
|
|
"numpy",
|
|
"plotly",
|
|
"yfinance",
|
|
"requests",
|
|
"python-dotenv"
|
|
],
|
|
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",
|
|
) |