-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.46 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
51
[tool.poetry]
name = "eredesscraper"
version = "0"
description = "Web scraper to extract data from E-REDES website and load it into database storage."
authors = ["Ricardo Filipe dos Santos <ricardofilipecdsantos@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rf-santos/eredes-scraper"
repository = "https://github.com/rf-santos/eredes-scraper"
documentation = "https://github.com/rf-santos/eredes-scraper"
keywords = ["web", "scraper", "influxdb", "database", "electricity", "energy", "e-redes"]
include = ["README.md", "CHANGELOG.md", "LICENSE", "pyproject.toml", "config.yml", "requirements.txt", "tests/**", "schemas/**"]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
influxdb-client = "^1.38.0"
openpyxl = "^3.1.2"
pandas = "^2.1.1"
pyyaml = "^6.0.1"
typer = {extras = ["all"], version = "^0.9.0"}
fastapi = "^0.110.0"
uvicorn = "^0.28.0"
python-multipart = "^0.0.9"
pykwalify = "^1.8.0"
duckdb = "^0.10.2"
playwright = "^1.44.0"
playwright-stealth = "^1.0.6"
screeninfo = "^0.8.1"
[tool.poetry.group.dev.dependencies]
ipython = "^8.17.2"
jupyter = "^1.0.0"
requests = "^2.31.0"
pytest = "^7.4.3"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.poetry.scripts]
ers = "eredesscraper.cli:app"