-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.04 KB
/
pyproject.toml
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
[project]
name = "innov8"
version = "0.3.0-beta"
description = "an interactive market dashboard"
authors = [
{ name = "mayushii21", email = "[email protected]" },
]
dependencies = [
"dash[diskcache]==2.16.1",
"dash-bootstrap-components",
"dash-bootstrap-templates>=1.3.0",
"dash-tvlwc>=0.1.1",
"requests",
"beautifulsoup4",
"lxml",
"pandas",
"yfinance",
"tqdm",
"python-dotenv>=1.0.1",
"loguru>=0.7.2",
"prophet>=1.1.5",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "BSD-3-Clause" }
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
innov8 = 'innov8.run:cli'
[project.urls]
Homepage = "http://innov8finance.pythonanywhere.com/"
Repository = "https://github.com/mayushii21/market-dashboard"
"Bug Tracker" = "https://github.com/mayushii21/market-dashboard/issues"
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]
[tool.pdm]
[tool.pdm.dev-dependencies]
test = ["pytest>=8.2.2", "pytest-cov>=6.0.0"]