-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (57 loc) · 1.59 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gesp"
version = "0.1"
authors = [
{ name="Niklas Wais", email="niklas.wais@uni-leipzig.de" },
]
description = "convenient scraping of german court decisions"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"attrs>=21.4.0,<22.0",
"Automat>=20.2.0,<21.0",
"certifi>=2022.6.15",
"cffi>=1.15.1,<2.0",
"charset-normalizer>=2.1.0,<3.0",
"constantly>=15.1.0,<16.0",
"cryptography>=37.0.2,<40.0",
"cssselect>=1.1.0,<2.0",
"filelock>=3.7.1,<4.9",
"hyperlink>=21.0.0,<22.0",
"idna>=3.3,<4.0",
"incremental>=21.3.0,<22.0",
"itemadapter>=0.6.0,<1.0",
"itemloaders>=1.0.4,<2.0",
"jmespath>=1.0.1,<2.0",
"lxml>=4.9.1,<5.0",
"parsel>=1.6.0,<2.0",
"Protego>=0.2.1,<1.0",
"pyasn1>=0.4.8,<1.0",
"pyasn1-modules>=0.2.8,<1.0",
"pycparser>=2.21,<3.0",
"PyDispatcher>=2.0.5,<3.0",
"pyOpenSSL>=22.0.0,<23.0",
"queuelib>=1.6.2,<2.0",
"requests>=2.28.1,<3.0",
"requests-file>=1.5.1,<2.0",
"Scrapy>=2.6.1,<3.0",
"service-identity>=21.1.0,<22.0",
"six>=1.16.0,<2.0",
"tldextract>=3.3.0,<4.0",
"Twisted>=22.4.0,<23.0",
"typing_extensions>=4.3.0,<5.0",
"urllib3>=1.26.9,<2.0",
"w3lib>=1.22.0,<2.0",
"zope.interface>=5.4.0,<6.0",
]
[project.urls]
"Homepage" = "https://github.com/niklaswais/gesp"
"Bug Tracker" = "https://github.com/niklaswais/gesp/issues"