-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
82 lines (72 loc) · 1.92 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "precis"
version = "0.3.7"
description = "A framework for automating your media diet"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["rss", "llm", "ai"]
authors = [
{name = "Leo Qin", email = "[email protected]" }
]
maintainers = [
{name = "Leo Qin", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Topic :: Office/Business :: News/Diary",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pydantic",
"feedparser",
"aenum",
"ruamel.yaml",
"ruamel.yaml.string",
"fastapi==0.110.1",
"uvicorn[standard]",
"tinydb",
"fastapi-utils==0.2.1",
"jinja2",
"requests",
"readabilipy",
"markdown2[all]",
"simplematrixbotlib",
"slack_sdk",
"ollama",
"playwright",
"openai",
"python-multipart",
"typing_inspect",
"lmdb",
"pyopml",
"asyncclick",
"textstat",
"jira",
"pytest",
"pytest_asyncio",
"pytest-cov",
"pytest-mock"
]
[project.urls]
"Homepage" = "https://github.com/pypa/sampleproject"
"Bug Reports" = "https://github.com/pypa/sampleproject/issues"
"Funding" = "https://donate.pypi.org"
"Say Thanks!" = "http://saythanks.io/to/example"
"Source" = "https://github.com/pypa/sampleproject/"
# The following would provide a command line executable called `sample`
# which executes the function `main` from this package when invoked.
[project.scripts]
precis = "app.cli:cli"
# This is configuration specific to the `setuptools` build backend.
# If you are using a different build backend, you will need to change this.
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]