-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (54 loc) · 1.57 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "duplicate-url-discarder"
description = "Discarding duplicate URLs based on rules."
authors = [{name = "Zyte Group Ltd", email = "[email protected]"}]
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.9"
dependencies = [
"Scrapy >= 2.11.0",
"url-matcher >= 0.5.0",
"w3lib >= 2.0.1",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/zytedata/duplicate-url-discarder"
[project.optional-dependencies]
rules = ["duplicate-url-discarder-rules"]
[tool.setuptools.dynamic]
version = {attr = "duplicate_url_discarder.__version__"}
[tool.setuptools.package-data]
duplicate_url_discarder = ["py.typed"]
[tool.isort]
profile = "black"
multi_line_output = 3
[[tool.mypy.overrides]]
module = [
"scrapy.*",
"url_matcher.*",
"pytest_twisted.*"
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"tests.*",
]
# Allow test functions to be untyped
disallow_untyped_defs = false