forked from GSA-TTS/searchgov-spider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (81 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "search_gov_crawler"
version = "0.0.1"
description = "The home for the spider that supports search.gov."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"attrs==23.1.0",
"Automat==22.10.0",
"beautifulsoup4==4.11.1",
"boto3==1.26.10",
"botocore==1.29.10",
"certifi==2022.9.24",
"cffi==1.16.0",
"charset-normalizer==2.1.1",
"constantly==15.1.0",
"cryptography==41.0.4",
"cssselect==1.2.0",
"docutils==0.20.1",
"elastic-transport==8.4.0",
"elasticsearch==8.5.0",
"filelock==3.12.4",
"hyperlink==21.0.0",
"idna==3.4",
"incremental==22.10.0",
"itemadapter==0.8.0",
"itemloaders==1.1.0",
"jmespath==1.0.1",
"Levenshtein==0.23.0",
"lxml==4.9.3",
"opensearch-py==2.0.0",
"packaging==23.2",
"parsel==1.8.1",
"Protego==0.3.0",
"pyasn1==0.5.0",
"pyasn1-modules==0.3.0",
"pycparser==2.21",
"PyDispatcher==2.0.7",
"pyOpenSSL==23.2.0",
"python-dateutil==2.8.2",
"queuelib==1.6.2",
"rapidfuzz==3.4.0",
"requests==2.28.1",
"requests-file==1.5.1",
"s3transfer==0.6.0",
"Scrapy==2.11.0",
"scrapyd==1.4.3",
"scrapyd-client==1.2.3",
"service-identity==23.1.0",
"six==1.16.0",
"soupsieve==2.3.2.post1",
"tldextract==5.0.1",
"Twisted==22.10.0",
"typing_extensions==4.8.0",
"uberegg==0.1.1",
"urllib3==1.26.12",
"w3lib==2.1.2",
"zope.interface==6.1",
"poetry",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
hello_world = "search_gov_crawler:hello_world"
run_test_spider = "search_gov_crawler:run_test_spider"
run_all_domains = "search_gov_crawler:run_all_domains"
[project.urls]
Homepage = "https://github.com/GSA/searchgov-spider"
[tool.poetry]
name = "search_gov_crawler"
version = "0.1.0"
description = "A short description of the package."
authors = [
"Search.gov <[email protected]>",
]