forked from druzsan/justetf-scraping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 879 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
36
37
38
[tool.poetry]
name = "justetf-scraping"
version = "0.1.0"
description = "Scrape the [justETF](https://www.justetf.com)"
authors = ["Alexander Druz <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "justetf_scraping"}]
[tool.poetry.dependencies]
python = "^3.8"
requests = "*"
pandas = ">=2.0.0"
notebook = { version = ">=7.0.0", optional = true }
seaborn = { version = "*", optional = true }
pycountry = "^23.12.11"
[tool.poetry.extras]
exploration = ["notebook", "seaborn"]
all = ["notebook", "seaborn"]
[tool.poetry.group.dev.dependencies]
black = "*"
ruff = "*"
mypy = "*"
pre-commit = "*"
types-requests = "*"
pandas-stubs = "*"
[tool.mypy]
ignore_missing_imports = false
disallow_untyped_defs = true
explicit_package_bases = true
mypy_path = "."
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"