-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.73 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
[tool.poetry]
name = "financial-scraper"
version = "1.2.0"
description = "A Python-based web scraping tool for collecting financial data from multiple sources"
authors = ["João Pedro Limão <jplimao077@gmail.com>"]
readme = "README.md"
repository = "https://github.com/johnazedo/financial-scraper"
documentation = "https://github.com/johnazedo/financial-scraper/tree/main/docs"
keywords = ["finance", "scraping", "stocks", "brazil", "investing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Office/Business :: Financial :: Investment"
]
packages = [
{include = "financial_scraper"},
{include = "examples"},
{include = "services"},
]
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "^4.13.4"
requests = "^2.32.5"
selenium = "^4.35.0"
requests-html = "^0.10.0"
lxml = {extras = ["html_clean"], version = "^6.0.1"}
lxml-html-clean = "^0.4.2"
pandas = "^2.3.2"
[tool.poetry.dev-dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.3"
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
mkdocs-git-revision-date-localized-plugin = "^1.2.1"
[tool.poetry.scripts]
example_status_invest = "examples.usage:status_invest_example"
example_fundamentus = "examples.usage:fundamentus_example"
example_investor_ten = "examples.usage:investor_ten_example"
example_trading_view = "examples.usage:trading_view_example"
example_market_data = "examples.usage:market_data_example"
example_funds_explorer = "examples.usage:funds_explorer_example"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"