forked from Scarvy/chatgpt-to-sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 789 Bytes
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
[project]
name = "chatgpt-to-sqlite"
version = "0.1.0"
description = "Import ChatGPT conversations into a SQLite database"
readme = "README.md"
authors = [{name = "Scott Carvalho"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"click",
"sqlite-utils",
"funcy",
]
[project.urls]
Homepage = "https://github.com/Scarvy/chatgpt-to-sqlite"
Changelog = "https://github.com/Scarvy/chatgpt-to-sqlite/releases"
Issues = "https://github.com/Scarvy/chatgpt-to-sqlite/issues"
CI = "https://github.com/Scarvy/chatgpt-to-sqlite/actions"
[project.entry-points.console_scripts]
chatgpt-to-sqlite = "chatgpt_to_sqlite.cli:cli"
[project.optional-dependencies]
test = ["pytest", "ruff"]