-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepctl-cmd-login"
version = "0.1.11" # x-release-please-version
description = "Login command for deepctl"
readme = "README.md"
license = "MIT"
authors = [{ name = "Deepgram", email = "devrel@deepgram.com" }]
maintainers = [{ name = "Deepgram", email = "devrel@deepgram.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["deepgram", "cli", "login", "authentication"]
requires-python = ">=3.10"
dependencies = [
"deepctl-core>=0.1.10",
"click>=8.0.0",
"rich>=13.0.0",
"deepgram-sdk>=6.0.0rc2",
"pydantic>=2.0.0",
]
[project.scripts]
# Internal commands not meant to be called directly
[project.entry-points."deepctl.commands"]
login = "deepctl_cmd_login.command:LoginCommand"
logout = "deepctl_cmd_login.command:LogoutCommand"
profiles = "deepctl_cmd_login.command:ProfilesCommand"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["deepctl_cmd_login*"]