-
-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (104 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
112 lines (104 loc) · 2.33 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[project]
name = "juriscraper"
version = "3.0.40"
description = "An API to scrape American court websites for metadata."
readme = "README.rst"
keywords = [ "scraping", "legal", "pacer" ]
license = " BSD-2-Clause"
license-files = [ "LICENSE" ]
authors = [
{ name = "Free Law Project", email = "info@free.law" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls.Repository = "https://github.com/freelawproject/juriscraper"
dependencies = [
"certifi>=2017.4.17",
"chardet>=3.0.2",
"charset-normalizer>=3.1.0",
"cssselect",
"dateparser>=1.2.0",
"feedparser>=6.0.11",
"geonamescache>=2.0.0",
"html5lib",
"lxml>=6.1",
"nh3",
"pydantic>=2.12.5",
"python-dateutil>=2.8.2",
"httpx[http2]>=0.28.1",
"requests>=2.20.0",
"selenium>=4.9.1",
"tldextract",
]
[dependency-groups]
dev = [
"jsondate3-aware",
"jinja2",
"pytest",
"mypy>=1.19.0",
"types-python-dateutil>=2.9.0.20251115",
"types-requests>=2.32.4.20250913",
"types-lxml>=2025.11.25",
"responses>=0.25.8",
]
[tool.setuptools]
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.ruff]
line-length = 79
lint.extend-safe-fixes = [
# non-pep585-annotation
"UP006",
]
lint.select = [
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# pycodestyle
"E",
# Pyflakes errors
"F",
# isort
"I",
# flake8-simplify
"SIM",
# flake8-tidy-imports
"TID",
# pyupgrade
"UP",
# Pyflakes warnings
"W",
]
lint.ignore = [
# flake8-bugbear opinionated rules
"B9",
# line-too-long
"E501",
# suppressible-exception
"SIM105",
# if-else-block-instead-of-if-exp
"SIM108",
# printf-string-formatting
"UP031",
]