-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (100 loc) · 2.58 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (100 loc) · 2.58 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
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "property-record-web-scraping"
version = "0.0.17"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "TheShanachie" },
]
description = "Property record web scraping API built with Flask and Selenium."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"annotated-types==0.7.0",
"attrs==25.3.0",
"beautifulsoup4==4.13.4",
"blinker==1.9.0",
"certifi==2025.7.14",
"charset-normalizer==3.4.2",
"click==8.2.1",
"dnspython==2.7.0",
"Flask==3.1.1",
"gunicorn==23.0.0",
"h11==0.16.0",
"idna==3.10",
"itsdangerous==2.2.0",
"Jinja2==3.1.6",
"jsonschema==4.23.0",
"jsonschema-specifications==2025.4.1",
"keyring>=24.0.0",
"MarkupSafe==3.0.2",
"numpy==2.2.5",
"opencv-python==4.12.0.88",
"outcome==1.3.0.post0",
"pandas==2.2.3",
"pillow==11.2.1",
"psutil==7.0.0",
"pybase64==1.4.2",
"pydantic==2.11.7",
"pydantic_core==2.33.2",
"pymongo==4.12.1",
"PySocks==1.7.1",
"python-dateutil==2.9.0.post0",
"pytz==2025.2",
"PyYAML==6.0.2",
"referencing==0.36.2",
"requests==2.32.3",
"rpds-py==0.26.0",
"selenium==4.32.0",
"setuptools==80.9.0",
"six==1.17.0",
"sniffio==1.3.1",
"sortedcontainers==2.4.0",
"soupsieve==2.7",
"trio==0.30.0",
"trio-websocket==0.12.2",
"typing-inspection==0.4.1",
"typing_extensions==4.14.1",
"tzdata==2025.2",
"urllib3==2.5.0",
"websocket-client==1.8.0",
"Werkzeug==3.1.3",
"wsproto==1.2.0"
]
classifiers = [
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Development Status :: 2 - Pre-Alpha"
]
[project.urls]
Homepage = "https://github.com/TheShanachie/property-record-web-scraping"
[tool.setuptools]
package-dir = {"" = "src"}
packages = {find = {where = ["src"]}}
[tool.setuptools.package-data]
property_record_web_scraping = [
"server/config/*.yaml",
"server/build/build.sh",
"server/build/bin/.gitkeep",
"server/build/docs/*.md",
"server/logs/.gitkeep",
"test/**/*.py",
"test/**/__init__.py"
]
[tool.setuptools.exclude-package-data]
property_record_web_scraping = [
"server/build/bin/chrome-linux64/*",
"server/build/bin/chromedriver-linux64/*",
"server/logs/tempempty/*",
"**/__pycache__/*",
"**/__pycache__/",
"*.log",
"*.tmp",
"*.bak"
]
[project.scripts]
run-app = "property_record_web_scraping.app:main"
test-app = "property_record_web_scraping.run_tests:main"