-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 836 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "blog-ai-tool"
version = "0.1.2"
description = "Useful ai tools for markdown blog posts, support ai seo, ai summary, ai translation, etc. Compatible with blog framework like Hexo, Hugo, etc."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Ryan Yang", email = "[email protected]" }
]
keywords = [
"blog",
"seo",
"ai",
"hugo",
"hexo"
]
dependencies = [
"openai>=1.58.1",
"python-frontmatter>=1.1.0",
"tomli>=2.2.1",
]
[project.scripts]
blog-ai-tool = "blog-ai-tool.main:main"
[tool.hatch.build.targets.wheel]
packages = ["blog-ai-tool"]
[project.urls]
homepage = "https://github.com/ryanng/blog-ai-tool"
repository = "https://github.com/ryanng/blog-ai-tool"