-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=42", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["notebooks"]
[project]
name = "stockMarket"
dynamic = [
"version"
]
authors = [
{ name="Jakob Gamper", email="97gamjak@gmail.com" },
]
description = "stockMarket is a python package for retrieving and analyzing stock data."
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ipykernel",
"pandas",
"yfinance",
"ib_insync",
"tqdm",
"numpy",
"beartype",
"mplfinance",
"tabula",
"jpype1",
"jinja2",
"ta-lib",
"alpha-vantage",
"sec-edgar-downloader",
"sec-cik-mapper",
"xlrd",
"openpyxl",
"tvDatafeed @ git+https://github.com/rongardF/tvdatafeed.git",
]
[project.optional-dependencies]
test = [
]
docs = [
"sphinx",
"sphinx-sitemap",
"myst-parser",
"sphinx-rtd-theme",
"better-apidoc",
"six",
]
[tool.setuptools_scm]
version_file = "stockMarket/_version.py"
[project.scripts]
[project.urls]