-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 797 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 797 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scrappy-nepse"
version = "0.1.0"
description = "Clean NEPSE market and IPO data scraper"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12.0",
"python-dateutil>=2.9.0.post0",
"requests>=2.31.0",
"nepse-scraper>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.10",
"black>=24.8.0",
"pre-commit>=4.5.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "B", "UP"]
ignore = ["E501", "N818"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.setuptools.packages.find]
include = ["scraper*"]