-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
89 lines (80 loc) · 2.1 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reviewhound"
version = "1.2.0"
description = "Business review aggregator and monitoring tool with sentiment analysis"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
keywords = [
"reviews",
"scraping",
"sentiment-analysis",
"business",
"monitoring",
"trustpilot",
"yelp",
"bbb",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"beautifulsoup4>=4.12.0",
"requests>=2.31.0",
"sqlalchemy>=2.0.0",
"textblob>=0.18.0",
"flask>=3.0.0",
"apscheduler>=3.10.0",
"click>=8.1.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"playwright>=1.40.0",
"cryptography>=42.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"responses>=0.25.0",
"build",
"twine",
"ruff>=0.8.0",
]
[project.scripts]
reviewhound = "reviewhound.cli:cli"
[project.urls]
Homepage = "https://github.com/jonmartin721/review-hound"
Repository = "https://github.com/jonmartin721/review-hound"
"Bug Tracker" = "https://github.com/jonmartin721/review-hound/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["reviewhound*"]
exclude = ["tests*", "scripts*"]
[tool.setuptools.package-data]
reviewhound = ["py.typed"]
"reviewhound.web" = ["templates/*.html", "static/*.css", "static/*.js"]
[tool.ruff]
target-version = "py312"
line-length = 110
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF"]
# E = pycodestyle errors
# F = pyflakes
# W = pycodestyle warnings
# I = isort (import sorting)
# UP = pyupgrade (modern Python syntax)
# B = bugbear (common gotchas)
# SIM = simplify
# RUF = ruff-specific rules
[tool.ruff.lint.isort]
known-first-party = ["reviewhound"]