-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.19 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "orchat"
version = "1.4.6"
authors = [
{name = "oop7", email = "oop7_support@proton.me"},
]
description = "A powerful CLI for chatting with AI models through OpenRouter"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["ai", "chat", "cli", "openrouter", "chatbot"]
dependencies = [
"requests",
"tiktoken",
"rich",
"python-dotenv",
"colorama",
"packaging",
"pyfzf",
"cryptography",
"prompt_toolkit",
"beautifulsoup4",
"html2text",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
"black",
"flake8",
"isort",
"build",
"twine",
"pre-commit",
]
[project.scripts]
orchat = "orchat:main"
[project.urls]
Homepage = "https://github.com/oop7/OrChat"
Repository = "https://github.com/oop7/OrChat"
"Bug Tracker" = "https://github.com/oop7/OrChat/issues"
Reddit = "https://www.reddit.com/r/NO-N_A_M_E/"
[tool.setuptools]
packages = ["orchat"]