-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.03 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
46
47
48
49
[project]
name = "innov8"
version = "0.1.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",
"dash-tvlwc>=0.1.1",
"dash-trich-components",
"requests",
"beautifulsoup4",
"lxml",
"pandas",
"yfinance",
"tqdm",
"python-dotenv>=1.0.1",
"loguru>=0.7.2",
]
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",
]