-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (76 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (76 loc) · 2.34 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tech-trends-harvester"
version = "0.6.1"
description = "Desktop app that aggregates tech trends from 11+ sources to help you discover blog-worthy topics."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "Rich Lewis", email = "1149213+RichLewis007@users.noreply.github.com"}]
keywords = ["trends", "blogging", "tech", "aggregator", "content", "research"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Text Processing",
]
dependencies = [
"PySide6>=6.9,<7",
"requests>=2.32,<3",
"feedparser>=6.0.12,<7",
"pandas>=2.3,<3",
"PyYAML>=6.0.3,<7",
"python-dateutil>=2.9,<3",
"beautifulsoup4>=4.14,<5",
"praw>=7.8,<8",
"pytrends>=4.9,<5",
"lxml>=6.0,<7",
"tomli>=2.0,<3; python_version < '3.11'",
"python-dotenv>=1.0,<2",
]
[project.urls]
Homepage = "https://github.com/RichLewis007/tech-trends-harvester"
Repository = "https://github.com/RichLewis007/tech-trends-harvester"
Issues = "https://github.com/RichLewis007/tech-trends-harvester/issues"
Changelog = "https://github.com/RichLewis007/tech-trends-harvester/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
"types-PyYAML>=6.0.0",
"types-requests>=2.31.0",
"bandit>=1.7.0",
"safety>=2.3.0",
]
[tool.uv]
index-url = "https://pypi.org/simple"
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = [
"E501", # Line too long
"E701", # Multiple statements on one line (colon) - allow guard clauses
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
warn_return_any = false
warn_unused_configs = true