-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 903 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 903 Bytes
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
[project]
name = "sector-scraper"
version = "0.1.1"
description = ""
authors = [{ name = "Falk", email = "andreas@mockel.se" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"playwright>=1.44.0",
"mypy>=1.10.1",
"beautifulsoup4>=4.12.3",
"python-dotenv>=1.0.1",
"unidecode>=1.3.8",
"pyyaml>=6.0.1",
"ruamel-yaml>=0.18.6",
"types-requests>=2.32.0.20240712",
"requests>=2.33.1",
]
[project.scripts]
sector-scraper = "sector_scraper.main:main"
[dependency-groups]
dev = [
"black>=24.4.2",
"bandit>=1.7.9",
"coverage>=7.5.4",
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
"isort>=5.13.2",
"flake8>=7.1.0",
"ruff>=0.5.0",
"ptpython>=3.0.27",
"types-beautifulsoup4>=4.12.0.20240511",
]
[tool.isort]
profile = "black"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"