-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.37 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>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepseek-cli"
version = "0.8.0"
description = "A powerful CLI for interacting with DeepSeek's AI models"
readme = "README.md"
authors = [
{name = "PierrunoYT", email = "pierrebruno@hotmail.ch"}
]
license = "MIT"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"openai>=1.0.0",
"requests>=2.31.0",
"typing-extensions>=4.7.0",
"pydantic>=2.0.0",
"setuptools>=42.0.0",
"rich>=14.0.0",
"pyfiglet>=1.0.3",
"prompt_toolkit>=3.0.0"
]
[project.urls]
Homepage = "https://github.com/PierrunoYT/deepseek-cli"
[project.scripts]
deepseek = "deepseek_cli.cli.deepseek_cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.py", "*.json"]