-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (33 loc) · 870 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "msfinance"
version = "0.4.0"
authors = [
{ name = "Jimmy Situ", email = "[email protected]"}
]
description = "msfinance offers Pythonic way to download stocks financial data from morningstar.com"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"xlrd",
"lxml",
"requests",
"pandas",
"tenacity",
"selenium",
"sqlalchemy",
"fake-useragent<2.0.0",
"selenium-stealth",
"undetected-chromedriver",
"webdriver-manager"
]
[project.urls]
"Homepage" = "https://github.com/jimmysitu/msfinance"
"Bug Tracker" = "https://github.com/jimmysitu/msfinance/issues"