25 lines
439 B
TOML
25 lines
439 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "paper-monitor"
|
|
version = "1.0.0"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"requests>=2.32,<3",
|
|
"PyYAML>=6.0,<7",
|
|
"python-dateutil>=2.9,<3",
|
|
"beautifulsoup4>=4.12,<5",
|
|
"openai>=1.0",
|
|
"tzdata",
|
|
"google-genai",
|
|
"pypdf",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|