-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "PyTradingBot"
dynamic = ["version"]
description = "Python module to get kernel information via OS specific CLI commands"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "svignesh1793@gmail.com" }]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
]
keywords = ["trading", "PyTradingBot"]
requires-python = ">=3.11"
dependencies = [
"Jinja2==3.1.*",
"pandas==3.0.*",
"requests==2.*",
"uvicorn==0.46.*",
"yfinance==1.3.*",
"pydantic==2.13.*",
"fastapi==0.136.*",
"matplotlib==3.10.*",
"finvizfinance==1.3.*",
"FastAPI-UI-Auth==0.3.*",
]
[tool.setuptools]
packages = [
"pytradingbot",
"pytradingbot.templates",
]
[tool.setuptools.package-data]
"pytradingbot.templates" = ["*.html", "*.json"]
[tool.setuptools.dynamic]
version = { attr = "pytradingbot.version.__version__" }
[project.optional-dependencies]
dev = ["pre-commit"]
[project.scripts]
# sends all the args to commandline function, where the arbitary commands as processed accordingly
pytradingbot = "pytradingbot:commandline"
[build-system]
requires = ["setuptools>=82", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/PyTradingBot"
Source = "https://github.com/thevickypedia/PyTradingBot"