-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[project]
name = "stockstream"
version = "1.0.0"
description = "Distributed real-time analytics platform for streaming stock market data"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "StockStream Team" }]
keywords = ["kafka", "spark", "streaming", "stock", "analytics", "influxdb", "grafana"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"confluent-kafka>=2.3.0,<3.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"findspark>=3.0.0",
"psycopg2-binary>=2.9.0",
"influxdb-client>=1.36.0,<2.0.0",
"yfinance>=0.2.0",
"schedule>=1.2.0",
"pytz>=2023.0",
]
[project.urls]
Homepage = "https://github.com/puneethkotha/StockStream"
Documentation = "https://puneethkotha.github.io/StockStream"
Repository = "https://github.com/puneethkotha/StockStream"
[tool.ruff]
target-version = "py310"
line-length = 100
select = ["E", "F", "I", "N", "W"]
[tool.ruff.isort]
known-first-party = ["consumer", "producer", "script", "logs"]