-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 870 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nbweb"
dynamic = ["version"]
authors = [
{ name="Subrat Lima", email="[email protected]" }
]
description = "A simple tool to extract data from websites"
readme = "README.md"
dependencies = ["httpx>=0.27.2", "parsel>=1.8.1", "fake-useragent>=1.5.1"]
requires-python = ">= 3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
"ruff>=0.6.3",
"tox>=4.18.0",
]
[tool.setuptools.dynamic]
version = {attr = "nbweb.__VERSION__"}
[project.urls]
Homepage = "https://github.com/subrat-lima/nbweb"
Issues = "https://github.com/subrat-lima/nbweb/issues"
[project.scripts]
nbweb = "nbweb.cli:cli"
[tool.ruff.lint]
extend-select = ["I"]