You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
854 B
32 lines
854 B
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="wsbfin",
|
|
version="1.0.0",
|
|
author="Wesley Kerfoot",
|
|
author_email="wes@wesk.tech",
|
|
description="A tool to track stock symbols mentioned",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/weskerfoot/wsbfin",
|
|
packages=setuptools.find_packages(),
|
|
include_package_data=True,
|
|
requires_python=">=3.7",
|
|
install_requires = [
|
|
"yfinance",
|
|
"praw"
|
|
],
|
|
classifiers= [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points = {
|
|
"console_scripts" : [
|
|
"wsbfin = wsbfin.wsbfin:main"
|
|
]
|
|
}
|
|
)
|
|
|