Format all code.

This commit is contained in:
2025-07-25 23:22:37 +02:00
parent f940470de3
commit 56e0965a5f
19 changed files with 850 additions and 353 deletions

View File

@@ -2,24 +2,24 @@
from setuptools import setup, find_packages
with open('requirements.txt') as f:
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name='reddit-stock-analyzer',
version='0.0.1',
author='Pål-Kristian Hamre',
author_email='its@pkhamre.com',
description='A command-line tool to analyze stock ticker mentions on Reddit.',
name="reddit-stock-analyzer",
version="0.0.1",
author="Pål-Kristian Hamre",
author_email="its@pkhamre.com",
description="A command-line tool to analyze stock ticker mentions on Reddit.",
# This now correctly finds your 'rstat_tool' package
packages=find_packages(),
packages=find_packages(),
install_requires=requirements,
entry_points={
'console_scripts': [
"console_scripts": [
# The path is now 'package_name.module_name:function_name'
'rstat=rstat_tool.main:main',
'rstat-dashboard=rstat_tool.dashboard:start_dashboard',
'rstat-cleanup=rstat_tool.cleanup:run_cleanup',
"rstat=rstat_tool.main:main",
"rstat-dashboard=rstat_tool.dashboard:start_dashboard",
"rstat-cleanup=rstat_tool.cleanup:run_cleanup",
],
},
)
)