-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.47 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "drupaltools-tip-generator"
version = "0.0.0"
description = "Generate static MD tip files for Drupal development tips using various LLM providers"
readme = "README.md"
license = "GPL-2.0-or-later"
authors = [
{name = "Drupal Tools Team", email = "info@drupaltools.com"}
]
keywords = ["drupal", "tips", "llm", "generator", "ai", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
]
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.18.0",
"openai>=1.0.0",
"requests>=2.28.0",
"html2text>=2020.1.16",
"beautifulsoup4>=4.12.0",
]
[project.urls]
Homepage = "https://github.com/drupaltools/tip-generator"
Repository = "https://github.com/drupaltools/tip-generator.git"
Issues = "https://github.com/drupaltools/tip-generator/issues"
[project.scripts]
drupaltools-tip-generator = "tip_generator:main"
[tool.setuptools.package-data]
tip_generator = ["templates/*.html", "static/*.css", "config.json"]
[tool.setuptools]
include-package-data = false
[project.optional-dependencies]
test = ["pytest>=7.0", "flask>=3.0", "requests", "html2text"]
viewer = ["flask>=3.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]