-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) Β· 1.92 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) Β· 1.92 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
[build-system]
requires = [
"setuptools==82.0.1",
"wheel==0.46.3"
]
build-backend = "setuptools.build_meta"
[project]
name = "autoblogs"
dynamic = ["version"]
description = "AI-Assisted Content Generation Toolkit"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Debmalya Pramanik"}
]
keywords = [
"ai",
"autoblogs",
"content-generation",
"llm",
"blog",
"seo",
"streamlit",
"cli-tool",
"python"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"python-dotenv>=1.0",
"jinja2>=3.1",
"streamlit>=1.55"
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.85"]
openai = ["openai>=2.28"]
llm = ["anthropic>=0.85", "openai>=2.28"]
dev = ["anthropic>=0.85", "openai>=2.28"]
[project.urls]
"GitHub Homepage" = "https://github.com/PyUtility/autoblogs"
"Bug Tracker" = "https://github.com/PyUtility/autoblogs/issues"
"Code Changelog" = "https://github.com/PyUtility/autoblogs/blob/master/CHANGELOG.md"
[project.scripts]
autoblogs-ui = "autoblogs.ui.main:launch"
autoblogs-cli = "autoblogs.cli.main:launch"
[tool.setuptools.packages.find]
exclude = ["tests*", "examples*"]
[tool.setuptools.dynamic]
version = {attr = "autoblogs.__version__"}
[tool.setuptools.package-data]
autoblogs = ["prompts/*"]